lib-src/movemail.c (error): Avoid warning when there are no args.

This commit is contained in:
Juanma Barranquero 2010-06-24 18:12:35 +02:00
parent 8c079ebbd2
commit 3b3807f859
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-06-24 Juanma Barranquero <lekktu@gmail.com>
* movemail.c (error): Avoid warning when there are no args.
2010-06-11 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (lisp2): Fix references to vc/vc-hooks.elc

View file

@ -612,7 +612,7 @@ error (s1, s2, s3)
else if (s2)
fprintf (stderr, s1, s2);
else
fprintf (stderr, s1);
fprintf (stderr, "%s", s1);
fprintf (stderr, "\n");
}