emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src dbusbind.c


From: Adrian Robert
Subject: [Emacs-diffs] emacs/src dbusbind.c
Date: Tue, 13 Oct 2009 01:03:29 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Adrian Robert <arobert> 09/10/13 01:03:29

Modified files:
        src            : dbusbind.c 

Log message:
        (dbus-method-return-internal, dbus-method-error-internal): Use long 
format in printf, and cast argument.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/dbusbind.c?cvsroot=emacs&r1=1.47&r2=1.48

Patches:
Index: dbusbind.c
===================================================================
RCS file: /sources/emacs/emacs/src/dbusbind.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -b -r1.47 -r1.48
--- dbusbind.c  25 Aug 2009 10:31:22 -0000      1.47
+++ dbusbind.c  13 Oct 2009 01:03:29 -0000      1.48
@@ -1247,7 +1247,7 @@
   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 @@
   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);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]