Loading lib_util/cmdln_parser.c +6 −2 Original line number Diff line number Diff line Loading @@ -469,12 +469,16 @@ static void printUsage( if ( opt.isMandatory ) { if ( !isEmptyString( opt.matchShort ) ) if ( opt.matchShort != NULL ) { fprintf( stderr, " -%s", opt.matchShort ); } else { fprintf( stderr, " --%s", opt.match ); } if ( !isEmptyString( opt.placeholder ) ) if ( opt.placeholder != NULL ) { fprintf( stderr, " %s", opt.placeholder ); } Loading Loading
lib_util/cmdln_parser.c +6 −2 Original line number Diff line number Diff line Loading @@ -469,12 +469,16 @@ static void printUsage( if ( opt.isMandatory ) { if ( !isEmptyString( opt.matchShort ) ) if ( opt.matchShort != NULL ) { fprintf( stderr, " -%s", opt.matchShort ); } else { fprintf( stderr, " --%s", opt.match ); } if ( !isEmptyString( opt.placeholder ) ) if ( opt.placeholder != NULL ) { fprintf( stderr, " %s", opt.placeholder ); } Loading