Cross Reference: 02-gcc4.patch
xref
: /
solaris-userland
/
components
/
gnome
/
gnome-session
/
patches
/
02-gcc4.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
7188
N/A
Warnings are treated as fatal when building gnome-session, so this causes
7188
N/A
an error when building with gcc as pid_t and int are not the same type.
7188
N/A
7188
N/A
Need to file upstream bug
7188
N/A
7188
N/A
---
gnome-session-3.16.0/gnome-session/gsm-dbus-client.c
2014-12-12 07:23:26.000000000 -0800
7188
N/A
+++
gnome-session-3.16.0/gnome-session/gsm-dbus-client.c
2015-07-06 22:48:37.709502671 -0700
7188
N/A
@@ -208,7 +208,7 @@
7188
N/A
retval = TRUE;
7188
N/A
7188
N/A
g_debug ("uid = %d", uid);
7188
N/A
- g_debug ("pid = %d", pid);
7188
N/A
+ g_debug ("pid = %d", (int) pid);
7188
N/A
7188
N/A
out:
7188
N/A
g_clear_pointer (&uid_variant, (GDestroyNotify) g_variant_unref);