From 34f750b7251936965045754e0f337cd5495ea25b Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 10 Jun 2014 19:15:06 +0200 Subject: machine-id-setup: fix array size of parameters Not that it really would have any effect on the generated code, but let's not confuse people... --- src/core/machine-id-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/machine-id-setup.c') diff --git a/src/core/machine-id-setup.c b/src/core/machine-id-setup.c index 2a58e48d6f..3efcd5fac2 100644 --- a/src/core/machine-id-setup.c +++ b/src/core/machine-id-setup.c @@ -38,7 +38,7 @@ #include "fileio.h" #include "path-util.h" -static int shorten_uuid(char destination[36], const char *source) { +static int shorten_uuid(char destination[34], const char source[36]) { unsigned i, j; for (i = 0, j = 0; i < 36 && j < 32; i++) { -- cgit v1.2.3-54-g00ecf