From c704898e268d2a92512c27bebbc77e9d8dc9545c Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Wed, 4 Jul 2018 16:54:31 +0200 Subject: [PATCH] gdump: Fix print-format error while GFlagsValue->value is an unsigned int --- gdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdump.c b/gdump.c index 6aa8bfd1c..0e8c60352 100644 --- a/gdump.c +++ b/gdump.c @@ -311,7 +311,7 @@ dump_flags_type (GType type, const char *symbol, GOutputStream *out) { GFlagsValue *value = &(klass->values[i]); - escaped_printf (out, " \n", + escaped_printf (out, " \n", value->value_name, value->value_nick, value->value); } goutput_write (out, " \n");