From 0cb4cc1de202873c294d0ae7735b3f28a1e1442b Mon Sep 17 00:00:00 2001 From: Thomas Hood Date: Tue, 28 Sep 2004 17:22:33 +0000 Subject: [PATCH] Terminate long_options array Signed-off-by: Thomas Hood --- aserver/aserver.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.47.1