diff options
author | biocrasher <biocrasher@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2006-08-11 02:04:16 +0000 |
---|---|---|
committer | biocrasher <biocrasher@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2006-08-11 02:04:16 +0000 |
commit | 8f2bf02cd29850bb5bb47eb6319d3d4c89510697 (patch) | |
tree | 9f8024714a0daf9112284ff773999acb3939c47b /recordmydesktop/src/parseargs.c | |
parent | 1b45d7fd3855c84b0f38cc72433a11a3267d9a7c (diff) |
erronneous usage message on -shared-threshold option
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@42 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/src/parseargs.c')
-rw-r--r-- | recordmydesktop/src/parseargs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recordmydesktop/src/parseargs.c b/recordmydesktop/src/parseargs.c index cc64fc2..ac75945 100644 --- a/recordmydesktop/src/parseargs.c +++ b/recordmydesktop/src/parseargs.c @@ -341,12 +341,12 @@ int ParseArgs(int argc,char **argv,ProgArgs *arg_return){ if((num>0)&&(num<100)) arg_return->shared_thres=num; else{ - fprintf(stderr,"Argument Usage: --shared-threshold N(0<number<100)\n"); + fprintf(stderr,"Argument Usage: -shared-threshold N(0<number<100)\n"); return 1; } } else{ - fprintf(stderr,"Argument Usage: -channels N(number>0)\n"); + fprintf(stderr,"Argument Usage: -shared-threshold N(0<number<100)\n"); return 1; } i++; |