gcc15 complains that the initialization is too long, indeed it is not
counting the last null byte, fix by simply not using an explicit count
Signed-off-by: Karel Zak <kzak@redhat.com>
#include "uuidP.h"
-static char const hexdigits_lower[16] = "0123456789abcdef";
-static char const hexdigits_upper[16] = "0123456789ABCDEF";
+static char const hexdigits_lower[] = "0123456789abcdef";
+static char const hexdigits_upper[] = "0123456789ABCDEF";
static void uuid_fmt(const uuid_t uuid, char *buf, char const *restrict fmt)
{