diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-03-01 18:33:22 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-03-01 18:41:58 -0500 |
commit | c35df4e8bcbc0b2de1b6cafe898b5d62b8eef40f (patch) | |
tree | d7f1b00f5f14d6ae29e1a5171a869cc31492576e | |
parent | 46ddd8335119ededf850b20b6d9be9d035a8d8f2 (diff) |
Fix building with gcc 10
Fix up the mix of explicit and automatic array sizes that gcc 10
now complains about.
Bug-AGL: SPEC-3819
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Iea2b7802618bf6537e96e59bd035ca4b91597642
-rw-r--r-- | binding/afm-common.c | 4 | ||||
-rw-r--r-- | binding/afm-common.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/binding/afm-common.c b/binding/afm-common.c index 93e6f54..635fc7b 100644 --- a/binding/afm-common.c +++ b/binding/afm-common.c @@ -19,7 +19,7 @@ #include "afm-common.h" -const char *gstreamer_control_commands[] = { +const char *gstreamer_control_commands[NUM_CMDS] = { "play", "pause", "previous", @@ -34,7 +34,7 @@ const char *gstreamer_control_commands[] = { }; /* NULLs signal this functional isn't available */ -const char *avrcp_control_commands[] = { +const char *avrcp_control_commands[NUM_CMDS] = { "Play", "Pause", "Previous", diff --git a/binding/afm-common.h b/binding/afm-common.h index 0439aa9..56c8f8f 100644 --- a/binding/afm-common.h +++ b/binding/afm-common.h @@ -53,8 +53,8 @@ enum { NUM_CMDS }; -const char *avrcp_control_commands[NUM_CMDS]; -const char *gstreamer_control_commands[NUM_CMDS]; +extern const char *avrcp_control_commands[NUM_CMDS]; +extern const char *gstreamer_control_commands[NUM_CMDS]; int get_command_index(const char *name); GList *find_media_index(GList *list, long int index); void g_free_playlist_item(void *ptr); |