aboutsummaryrefslogtreecommitdiffstats
path: root/util/argparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/argparse.c')
-rw-r--r--util/argparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/argparse.c b/util/argparse.c
index 4810d8700..67c3c8ea1 100644
--- a/util/argparse.c
+++ b/util/argparse.c
@@ -928,7 +928,7 @@ main(int argc, char **argv)
while( ArgParse( &pargs, opts) ) {
switch( pargs.r_opt ) {
- case -1 : printf( "arg='%s'\n", pargs.r.ret_str); break;
+ case -1 : printf( "arg=`%s'\n", pargs.r.ret_str); break;
case 'v': opt.verbose++; break;
case 'e': opt.echo++; break;
case 'd': opt.debug++; break;
@@ -947,9 +947,9 @@ main(int argc, char **argv)
if( opt.debug )
printf(" debug=%d\n", opt.debug );
if( opt.outfile )
- printf(" outfile='%s'\n", opt.outfile );
+ printf(" outfile=`%s'\n", opt.outfile );
if( opt.crf )
- printf(" crffile='%s'\n", opt.crf );
+ printf(" crffile=`%s'\n", opt.crf );
if( opt.myopt )
printf(" myopt=%d\n", opt.myopt );
if( opt.a_long_one )