(dbus-method-return-internal, dbus-method-error-internal): Use long format in printf, and cast argument.
This commit is contained in:
parent
0cd16af432
commit
603f0bf0d9
1 changed files with 2 additions and 2 deletions
|
@ -1247,7 +1247,7 @@ usage: (dbus-method-return-internal BUS SERIAL SERVICE &rest ARGS) */)
|
|||
CHECK_STRING (service);
|
||||
GCPRO3 (bus, serial, service);
|
||||
|
||||
XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service));
|
||||
XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service));
|
||||
|
||||
/* Open a connection to the bus. */
|
||||
connection = xd_initialize (bus);
|
||||
|
@ -1341,7 +1341,7 @@ usage: (dbus-method-error-internal BUS SERIAL SERVICE &rest ARGS) */)
|
|||
CHECK_STRING (service);
|
||||
GCPRO3 (bus, serial, service);
|
||||
|
||||
XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service));
|
||||
XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service));
|
||||
|
||||
/* Open a connection to the bus. */
|
||||
connection = xd_initialize (bus);
|
||||
|
|
Loading…
Add table
Reference in a new issue