lib-src/movemail.c (error): Avoid warning when there are no args.
This commit is contained in:
parent
8c079ebbd2
commit
3b3807f859
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue