Commit b8397f8f authored by Sam Hocevar's avatar Sam Hocevar

. changement cosm�tique

parent 5af317ca
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
/* "(" PROGRAM_BUILD ") (" PROGRAM_OPTIONS ")\n" */ \ /* "(" PROGRAM_BUILD ") (" PROGRAM_OPTIONS ")\n" */ \
"Copyright 1996-2000 VideoLAN\n" "Copyright 1996-2000 VideoLAN\n"
#define COPYRIGHT_MESSAGE "VideoLAN Client - version @VLC_VERSION@" \ #define COPYRIGHT_MESSAGE "VideoLAN Client - version @VLC_VERSION@" \
" @VLC_CODENAME@ - (c)1996-2000 VideoLAN" " @VLC_CODENAME@ - (c)1996-2000 VideoLAN\n"
#define VERSION "@VLC_VERSION@" #define VERSION "@VLC_VERSION@"
......
...@@ -426,6 +426,8 @@ static int GetConfiguration( int i_argc, char *ppsz_argv[], char *ppsz_env[] ) ...@@ -426,6 +426,8 @@ static int GetConfiguration( int i_argc, char *ppsz_argv[], char *ppsz_env[] )
p_main->ppsz_env = ppsz_env; p_main->ppsz_env = ppsz_env;
SetDefaultConfiguration(); SetDefaultConfiguration();
intf_MsgImm( COPYRIGHT_MESSAGE "\n" );
/* Parse command line options */ /* Parse command line options */
opterr = 0; opterr = 0;
while( ( c = getopt_long( i_argc, ppsz_argv, psz_shortopts, longopts, 0 ) ) != EOF ) while( ( c = getopt_long( i_argc, ppsz_argv, psz_shortopts, longopts, 0 ) ) != EOF )
...@@ -547,8 +549,6 @@ static void Usage( int i_fashion ) ...@@ -547,8 +549,6 @@ static void Usage( int i_fashion )
return; return;
} }
intf_MsgImm( COPYRIGHT_MESSAGE "\n" );
/* Options */ /* Options */
intf_Msg( "\n" intf_Msg( "\n"
"Options:\n" "Options:\n"
......
...@@ -167,8 +167,8 @@ void vpar_SynchroUpdateStructures( vpar_thread_t * p_vpar, ...@@ -167,8 +167,8 @@ void vpar_SynchroUpdateStructures( vpar_thread_t * p_vpar,
intf_ErrMsg( "P: %.2f/%i ", p_vpar->synchro.displayable_p, intf_ErrMsg( "P: %.2f/%i ", p_vpar->synchro.displayable_p,
p_vpar->synchro.i_P_seen ); p_vpar->synchro.i_P_seen );
if( p_vpar->synchro.b_all_B ) if( p_vpar->synchro.b_all_B )
intf_ErrMsg( "B: %i/%i", p_vpar->synchro.displayable_b, intf_ErrMsg( "B: %i/%i", p_vpar->synchro.i_B_seen,
p_vpar->synchro.displayable_b ); p_vpar->synchro.i_B_seen );
else if( p_vpar->synchro.displayable_b > 0 ) else if( p_vpar->synchro.displayable_b > 0 )
intf_ErrMsg( "B: %.2f/%i", p_vpar->synchro.displayable_b, intf_ErrMsg( "B: %.2f/%i", p_vpar->synchro.displayable_b,
p_vpar->synchro.i_B_seen ); p_vpar->synchro.i_B_seen );
......
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