From 0e5a4589773ba907bdcedc13dd959f73dc478fb9 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 16 Jan 2024 14:00:36 +0000 Subject: [PATCH] gobex: const annotate RO arrays, use G_N_ELEMENTS --- gobex/gobex.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gobex/gobex.c b/gobex/gobex.c index e9b89cead..fdeb11c65 100644 --- a/gobex/gobex.c +++ b/gobex/gobex.c @@ -122,7 +122,7 @@ struct setpath_data { guint8 constants; } __attribute__ ((packed)); -static struct error_code { +static const struct error_code { guint8 code; const char *name; } obex_errors[] = { @@ -169,7 +169,7 @@ static struct error_code { const char *g_obex_strerror(guint8 err_code) { - struct error_code *error; + const struct error_code *error; for (error = obex_errors; error->name != NULL; error++) { if (error->code == err_code) @@ -1423,7 +1423,7 @@ failed: return FALSE; } -static GDebugKey keys[] = { +static const GDebugKey keys[] = { { "error", G_OBEX_DEBUG_ERROR }, { "command", G_OBEX_DEBUG_COMMAND }, { "transfer", G_OBEX_DEBUG_TRANSFER }, @@ -1443,7 +1443,8 @@ GObex *g_obex_new(GIOChannel *io, GObexTransportType transport_type, const char *env = g_getenv("GOBEX_DEBUG"); if (env) { - gobex_debug = g_parse_debug_string(env, keys, 7); + gobex_debug = g_parse_debug_string(env, keys, + G_N_ELEMENTS(keys)); g_setenv("G_MESSAGES_DEBUG", "gobex", FALSE); } else gobex_debug = G_OBEX_DEBUG_NONE;