From: Thomas Hood Date: Tue, 28 Sep 2004 17:22:33 +0000 (+0000) Subject: Terminate long_options array X-Git-Tag: v1.0.7~12 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=0cb4cc1de202873c294d0ae7735b3f28a1e1442b;p=alsa-lib.git Terminate long_options array Signed-off-by: Thomas Hood --- diff --git a/aserver/aserver.c b/aserver/aserver.c index bf72b7da..481b0ae7 100644 --- a/aserver/aserver.c +++ b/aserver/aserver.c @@ -1006,7 +1006,8 @@ static void usage(void) int main(int argc, char **argv) { static struct option long_options[] = { - {"help", 0, 0, 'h'} + {"help", 0, 0, 'h'}, + { 0 , 0 , 0, 0 } }; int c; snd_config_t *conf;