From: Jaroslav Kysela Date: Mon, 18 Jan 1999 22:41:28 +0000 (+0000) Subject: Fixed small bug.. X-Git-Tag: v1.0.3~507 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=288c349c338e5e617620ad0e8026c1bac9eb6245;p=alsa-utils.git Fixed small bug.. --- diff --git a/alsactl/alsactl.c b/alsactl/alsactl.c index d331e75..34beb70 100644 --- a/alsactl/alsactl.c +++ b/alsactl/alsactl.c @@ -198,7 +198,7 @@ int main(int argc, char *argv[]) return 0; } if (!strcmp(argv[optind], "store")) { - return store_setup(argc - optind > 1 ? argv[optind + 1] : NULL) + return store_setup(argc - optind > 1 ? argv[optind + 1] : NULL) ? 1 : 0; } else if (!strcmp(argv[optind], "restore")) { return restore_setup(argc - optind > 1 ? argv[optind + 1] : NULL) ?