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

@ -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");
}