← Back to team overview

ayatana-commits team mailing list archive

[Merge] lp:~lifeless/dbusmenu/bug-527539 into lp:dbusmenu

 

Robert Collins has proposed merging lp:~lifeless/dbusmenu/bug-527539 into lp:dbusmenu.

    Requested reviews:
    DBus Menu Team (dbusmenu-team)
Related bugs:
  #527539 compile error on 64-bit
  https://bugs.launchpad.net/bugs/527539


Fix an abuse of %X - rather than casting pointers to ints, use the specific %p to print them out.
-- 
https://code.launchpad.net/~lifeless/dbusmenu/bug-527539/+merge/20099
Your team ayatana-commits is subscribed to branch lp:dbusmenu.
=== modified file 'tests/test-glib-proxy-proxy.c'
--- tests/test-glib-proxy-proxy.c	2010-02-10 21:09:50 +0000
+++ tests/test-glib-proxy-proxy.c	2010-02-25 04:01:17 +0000
@@ -19,7 +19,7 @@
 void
 root_changed (DbusmenuClient * client, DbusmenuMenuitem * newroot, gpointer user_data)
 {
-	g_debug("New root: %X", (guint)newroot);
+	g_debug("New root: %p", newroot);
 
 	if (newroot == NULL) {
 		g_debug("Root removed, exiting");


Follow ups