Commit 05eadd7c authored by Christophe Massiot's avatar Christophe Massiot

Enforce code conventions for dvblast.c.

parent c445dada
...@@ -958,7 +958,7 @@ int main( int i_argc, char **pp_argv ) ...@@ -958,7 +958,7 @@ int main( int i_argc, char **pp_argv )
srand( time(NULL) * getpid() ); srand( time(NULL) * getpid() );
demux_Open(); demux_Open();
// init the mrtg logfile // init the mrtg logfile
mrtgInit(psz_mrtg_file); mrtgInit(psz_mrtg_file);
...@@ -998,7 +998,7 @@ int main( int i_argc, char **pp_argv ) ...@@ -998,7 +998,7 @@ int main( int i_argc, char **pp_argv )
if ( i_quit_timeout && i_quit_timeout <= i_wallclock ) if ( i_quit_timeout && i_quit_timeout <= i_wallclock )
{ {
switch (i_print_type) switch (i_print_type)
{ {
case PRINT_XML: case PRINT_XML:
printf("</TS>\n"); printf("</TS>\n");
...@@ -1010,9 +1010,9 @@ int main( int i_argc, char **pp_argv ) ...@@ -1010,9 +1010,9 @@ int main( int i_argc, char **pp_argv )
} }
p_ts = pf_Read( i_poll_timeout ); p_ts = pf_Read( i_poll_timeout );
if ( p_ts != NULL ) if ( p_ts != NULL )
{ {
mrtgAnalyse(p_ts); mrtgAnalyse(p_ts);
demux_Run( p_ts ); demux_Run( p_ts );
} }
i_poll_timeout = output_Send(); i_poll_timeout = output_Send();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment