audiod: Make command array static.
[paraslash.git] / audiod_command.c
index b49d659e0ac0bd784b2002b941b3471540ee5ac9..7b69e1ab070198a52e33f4722188cba1a769dd2a 100644 (file)
@@ -30,7 +30,7 @@ extern struct sched sched;
 extern char *stat_item_values[NUM_STAT_ITEMS];
 
 
-struct audiod_command audiod_cmds[] = {DEFINE_AUDIOD_CMD_ARRAY};
+static struct audiod_command audiod_cmds[] = {DEFINE_AUDIOD_CMD_ARRAY};
 
 /** Iterate over the array of all audiod commands. */
 #define FOR_EACH_COMMAND(c) for (c = 0; audiod_cmds[c].name; c++)