summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-05-08 07:43:27 +0200
committerThomas Haller <thaller@redhat.com>2020-05-08 07:43:27 +0200
commit6e9967939b5b7dd6a49405d4d6018a528414ca4d (patch)
tree8f6f29ffcd4e560fc025912e13fa77cd9ce7fb17
parentbdac27eb28ba1ad4c7c4e1454d3219182b850743 (diff)
downloadNetworkManager-6e9967939b5b7dd6a49405d4d6018a528414ca4d.tar.gz
acd: fix char buffer argument to _acd_event_to_string_buf()
-rw-r--r--src/devices/nm-acd-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/nm-acd-manager.c b/src/devices/nm-acd-manager.c
index d9caadc6b6..1c6c42a0ea 100644
--- a/src/devices/nm-acd-manager.c
+++ b/src/devices/nm-acd-manager.c
@@ -84,7 +84,7 @@ _acd_event_to_string (unsigned int event)
#define ACD_EVENT_TO_STRING_BUF_SIZE 50
static const char *
-_acd_event_to_string_buf (unsigned event, char buffer[ACD_EVENT_TO_STRING_BUF_SIZE])
+_acd_event_to_string_buf (unsigned event, char buffer[static ACD_EVENT_TO_STRING_BUF_SIZE])
{
const char *s;