From b27fc6a03f3ae398462baefe28a8194bd582e835 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 10 May 2012 20:54:49 -0400 Subject: add NULL terminator to option array --- pulsemix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/pulsemix.c b/pulsemix.c index 337bdc2..3d2f890 100644 --- a/pulsemix.c +++ b/pulsemix.c @@ -364,6 +364,7 @@ int main(int argc, char *argv[]) static const struct option opts[] = { { "help", no_argument, 0, 'h' }, { "sink", required_argument, 0, 's' }, + { 0, 0, 0, 0 }, }; for (;;) { -- cgit v1.2.3