aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAdrian Robert2009-10-13 01:03:29 +0000
committerAdrian Robert2009-10-13 01:03:29 +0000
commit603f0bf0d9bfffaca599687d9a142112a9d4eee7 (patch)
treee6ae44eb119df93080cc904882881ad397def240 /src
parent0cd16af4322df5df1fffe48931892f7d92a43f01 (diff)
downloademacs-603f0bf0d9bfffaca599687d9a142112a9d4eee7.tar.gz
emacs-603f0bf0d9bfffaca599687d9a142112a9d4eee7.zip
(dbus-method-return-internal, dbus-method-error-internal): Use long format in printf, and cast argument.
Diffstat (limited to 'src')
-rw-r--r--src/dbusbind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c
index d0233fdab43..f4a5c6887d8 100644
--- a/src/dbusbind.c
+++ b/src/dbusbind.c
@@ -1247,7 +1247,7 @@ usage: (dbus-method-return-internal BUS SERIAL SERVICE &rest ARGS) */)
1247 CHECK_STRING (service); 1247 CHECK_STRING (service);
1248 GCPRO3 (bus, serial, service); 1248 GCPRO3 (bus, serial, service);
1249 1249
1250 XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service)); 1250 XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service));
1251 1251
1252 /* Open a connection to the bus. */ 1252 /* Open a connection to the bus. */
1253 connection = xd_initialize (bus); 1253 connection = xd_initialize (bus);
@@ -1341,7 +1341,7 @@ usage: (dbus-method-error-internal BUS SERIAL SERVICE &rest ARGS) */)
1341 CHECK_STRING (service); 1341 CHECK_STRING (service);
1342 GCPRO3 (bus, serial, service); 1342 GCPRO3 (bus, serial, service);
1343 1343
1344 XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service)); 1344 XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service));
1345 1345
1346 /* Open a connection to the bus. */ 1346 /* Open a connection to the bus. */
1347 connection = xd_initialize (bus); 1347 connection = xd_initialize (bus);