diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2014-12-06 02:21:56 -0300 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2014-12-06 02:24:53 -0300 |
commit | 7cdc99707bf7b38ee67d848e528ff7fdac6219d3 (patch) | |
tree | 9973ced9e2ddfbb9d1a4bede04a06190aacb583c | |
parent | ac896f0cd1b1e71f1f62da451dc96abef80f3c71 (diff) | |
download | ffmpeg-7cdc99707bf7b38ee67d848e528ff7fdac6219d3.tar.gz |
ffserver_config: fix line width on fwd declarations
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
-rw-r--r-- | ffserver_config.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ffserver_config.c b/ffserver_config.c index 9f9655ef5e..ccc35d7e4a 100644 --- a/ffserver_config.c +++ b/ffserver_config.c @@ -35,10 +35,12 @@ static int ffserver_save_avoption(const char *opt, const char *arg, int type, FFServerConfig *config); -static void vreport_config_error(const char *filename, int line_num, int log_level, - int *errors, const char *fmt, va_list vl); -static void report_config_error(const char *filename, int line_num, int log_level, - int *errors, const char *fmt, ...); +static void vreport_config_error(const char *filename, int line_num, + int log_level, int *errors, const char *fmt, + va_list vl); +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__) |