Browse Source

ffserver_config: fix line width on fwd declarations

Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
tags/n2.6
Reynaldo H. Verdejo Pinochet 11 years ago
parent
commit
7cdc99707b
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      ffserver_config.c

+ 6
- 4
ffserver_config.c View File

@@ -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__)


Loading…
Cancel
Save