From 51a61124a2dabd828b3f7f0ede4816281a40a807 Mon Sep 17 00:00:00 2001 From: David King Date: Mon, 9 Feb 2015 11:23:58 +0000 Subject: [PATCH] gobject.h: Use correct format specifier for __LINE__ GCC 5.0, with its new -Wformat-signedness, warns about the sign being different between a type and the format string in printf-format messages, leading to compiler warnings with G_OBJECT_WARN_INVALID_PSPEC. In other uses of __LINE__ inside GLib, %d is used, and GCC seems to expect a format specifier of %d as well: https://gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html https://bugzilla.gnome.org/show_bug.cgi?id=744263 --- gobject/gobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/gobject.h b/gobject/gobject.h index 096ba7fa0..b9335a685 100644 --- a/gobject/gobject.h +++ b/gobject/gobject.h @@ -627,7 +627,7 @@ G_STMT_START { \ GObject *_glib__object = (GObject*) (object); \ GParamSpec *_glib__pspec = (GParamSpec*) (pspec); \ guint _glib__property_id = (property_id); \ - g_warning ("%s:%u: invalid %s id %u for \"%s\" of type '%s' in '%s'", \ + g_warning ("%s:%d: invalid %s id %u for \"%s\" of type '%s' in '%s'", \ __FILE__, __LINE__, \ (pname), \ _glib__property_id, \