Remove the --help arg and don't quit

Original commit message from CVS:
Remove the --help arg and don't quit
This commit is contained in:
Wim Taymans 2001-12-16 19:14:12 +00:00
parent 00a26bb866
commit e567fed741

View file

@ -276,6 +276,8 @@ gst_init_check (int *argc,
} }
else if (!strncmp ("--help", (*argv)[i], 6)) { else if (!strncmp ("--help", (*argv)[i], 6)) {
showhelp = TRUE; showhelp = TRUE;
(*argv)[i] = NULL;
} }
} }
@ -337,8 +339,6 @@ gst_init_check (int *argc,
#endif #endif
} }
} }
ret = FALSE;
} }
return ret; return ret;