diff options
Diffstat (limited to 'src/dbusbind.c')
| -rw-r--r-- | src/dbusbind.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index 792414b23d8..4c0b9bd017a 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -506,7 +506,7 @@ xd_append_arg (unsigned int dtype, Lisp_Object object, DBusMessageIter *iter) | |||
| 506 | CHECK_NUMBER (object); | 506 | CHECK_NUMBER (object); |
| 507 | { | 507 | { |
| 508 | dbus_uint64_t val = XUINT (object); | 508 | dbus_uint64_t val = XUINT (object); |
| 509 | XD_DEBUG_MESSAGE ("%c %u", dtype, (unsigned int) val); | 509 | XD_DEBUG_MESSAGE ("%c %"pI"u", dtype, XUINT (object)); |
| 510 | if (!dbus_message_iter_append_basic (iter, dtype, &val)) | 510 | if (!dbus_message_iter_append_basic (iter, dtype, &val)) |
| 511 | XD_SIGNAL2 (build_string ("Unable to append argument"), object); | 511 | XD_SIGNAL2 (build_string ("Unable to append argument"), object); |
| 512 | return; | 512 | return; |
| @@ -1377,7 +1377,7 @@ usage: (dbus-method-return-internal BUS SERIAL SERVICE &rest ARGS) */) | |||
| 1377 | CHECK_STRING (service); | 1377 | CHECK_STRING (service); |
| 1378 | GCPRO3 (bus, serial, service); | 1378 | GCPRO3 (bus, serial, service); |
| 1379 | 1379 | ||
| 1380 | XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service)); | 1380 | XD_DEBUG_MESSAGE ("%"pI"u %s ", XUINT (serial), SDATA (service)); |
| 1381 | 1381 | ||
| 1382 | /* Open a connection to the bus. */ | 1382 | /* Open a connection to the bus. */ |
| 1383 | connection = xd_initialize (bus, TRUE); | 1383 | connection = xd_initialize (bus, TRUE); |
| @@ -1465,7 +1465,7 @@ usage: (dbus-method-error-internal BUS SERIAL SERVICE &rest ARGS) */) | |||
| 1465 | CHECK_STRING (service); | 1465 | CHECK_STRING (service); |
| 1466 | GCPRO3 (bus, serial, service); | 1466 | GCPRO3 (bus, serial, service); |
| 1467 | 1467 | ||
| 1468 | XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service)); | 1468 | XD_DEBUG_MESSAGE ("%"pI"u %s ", XUINT (serial), SDATA (service)); |
| 1469 | 1469 | ||
| 1470 | /* Open a connection to the bus. */ | 1470 | /* Open a connection to the bus. */ |
| 1471 | connection = xd_initialize (bus, TRUE); | 1471 | connection = xd_initialize (bus, TRUE); |