7188N/AWarnings are treated as fatal when building gnome-session, so this causes
7188N/Aan error when building with gcc as pid_t and int are not the same type.
7188N/A
7188N/ANeed to file upstream bug
7188N/A
7188N/A--- gnome-session-3.16.0/gnome-session/gsm-dbus-client.c 2014-12-12 07:23:26.000000000 -0800
7188N/A+++ gnome-session-3.16.0/gnome-session/gsm-dbus-client.c 2015-07-06 22:48:37.709502671 -0700
7188N/A@@ -208,7 +208,7 @@
7188N/A retval = TRUE;
7188N/A
7188N/A g_debug ("uid = %d", uid);
7188N/A- g_debug ("pid = %d", pid);
7188N/A+ g_debug ("pid = %d", (int) pid);
7188N/A
7188N/A out:
7188N/A g_clear_pointer (&uid_variant, (GDestroyNotify) g_variant_unref);