From 5c1acf0a09b0adeed352c2f21756a07eac379fba Mon Sep 17 00:00:00 2001 From: "Reynaldo H. Verdejo Pinochet" Date: Thu, 24 Sep 2015 14:12:08 -0700 Subject: [PATCH] ffserver: rm whitespace c&p leftovers from macro Signed-off-by: Reynaldo H. Verdejo Pinochet --- ffserver_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffserver_config.c b/ffserver_config.c index 4cc138e625..5b97b39f5b 100644 --- a/ffserver_config.c +++ b/ffserver_config.c @@ -42,8 +42,8 @@ static void report_config_error(const char *filename, int line_num, int log_level, int *errors, const char *fmt, ...); -#define ERROR(...) report_config_error(config->filename, config->line_num,\ - AV_LOG_ERROR, &config->errors, __VA_ARGS__) +#define ERROR(...) report_config_error(config->filename, config->line_num,\ + AV_LOG_ERROR, &config->errors, __VA_ARGS__) #define WARNING(...) report_config_error(config->filename, config->line_num,\ AV_LOG_WARNING, &config->warnings, __VA_ARGS__)