emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100635: lib-src/movemail.c (error):


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100635: lib-src/movemail.c (error): Avoid warning when there are no args.
Date: Thu, 24 Jun 2010 18:12:35 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100635
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Thu 2010-06-24 18:12:35 +0200
message:
  lib-src/movemail.c (error): Avoid warning when there are no args.
modified:
  lib-src/ChangeLog
  lib-src/movemail.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2010-06-11 21:26:13 +0000
+++ b/lib-src/ChangeLog 2010-06-24 16:12:35 +0000
@@ -1,3 +1,7 @@
+2010-06-24  Juanma Barranquero  <address@hidden>
+
+       * movemail.c (error): Avoid warning when there are no args.
+
 2010-06-11  Juanma Barranquero  <address@hidden>
 
        * makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc

=== modified file 'lib-src/movemail.c'
--- a/lib-src/movemail.c        2010-04-03 01:54:24 +0000
+++ b/lib-src/movemail.c        2010-06-24 16:12:35 +0000
@@ -612,7 +612,7 @@
   else if (s2)
     fprintf (stderr, s1, s2);
   else
-    fprintf (stderr, s1);
+    fprintf (stderr, "%s", s1);
   fprintf (stderr, "\n");
 }
 


reply via email to

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