Codebase list squeezelite / a2de5cd
-? options has no argument Adrian Smith 9 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
223223
224224 while (optind < argc && strlen(argv[optind]) >= 2 && argv[optind][0] == '-') {
225225 char *opt = argv[optind] + 1;
226 if (strstr("oabcdefmMnNpPrs?", opt) && optind < argc - 1) {
226 if (strstr("oabcdefmMnNpPrs", opt) && optind < argc - 1) {
227227 optarg = argv[optind + 1];
228228 optind += 2;
229 } else if (strstr("ltz"
229 } else if (strstr("ltz?"
230230 #if RESAMPLE
231231 "uR"
232232 #endif