From 0a9c78c26dfd49d37fb4f77a2909a19eb246ebf2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 27 Sep 2018 13:14:32 +0200 Subject: [PATCH] Cleanup --- record/record_driver.c | 6 +++--- record/record_driver.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/record/record_driver.c b/record/record_driver.c index 32896df950..9b2f4afe37 100644 --- a/record/record_driver.c +++ b/record/record_driver.c @@ -520,11 +520,11 @@ unsigned *recording_driver_get_height(void) return &recording_height; } -void recording_driver_update_streaming_url() +void recording_driver_update_streaming_url(void) { - settings_t *settings = config_get_ptr(); + settings_t *settings = config_get_ptr(); const char* youtube_url = "rtmp://a.rtmp.youtube.com/live2/"; - const char* twitch_url = "rtmp://live.twitch.tv/app/"; + const char* twitch_url = "rtmp://live.twitch.tv/app/"; if (!settings) return; diff --git a/record/record_driver.h b/record/record_driver.h index 539cb50698..6f29831549 100644 --- a/record/record_driver.h +++ b/record/record_driver.h @@ -208,7 +208,7 @@ bool recording_is_enabled(void); bool streaming_is_enabled(void); -void recording_driver_update_streaming_url(); +void recording_driver_update_streaming_url(void); extern void *recording_data;