]> err.no Git - util-linux/commitdiff
cal: avoid -Wformat warnings
authorJim Meyering <jim@meyering.net>
Tue, 25 Sep 2007 12:25:41 +0000 (14:25 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 3 Oct 2007 21:09:50 +0000 (23:09 +0200)
Avoid this warning from gcc -Wformat:
"format not a string literal and no format arguments".

Signed-off-by: Jim Meyering <jim@meyering.net>
misc-utils/cal.c

index 77333d8183f1d58bf3a29c0b95195e8c67171264..10bb8b5cd1d279dfe24a51b065c993bfeb1291db 100644 (file)
@@ -702,7 +702,7 @@ ascii_day(char *p, int day) {
        }
        if (day & TODAY_FLAG) {
                day &= ~TODAY_FLAG;
-               p += sprintf(p, Senter);
+               p += sprintf(p, "%s", Senter);
                highlight = 1;
        }
        if (julian) {
@@ -725,7 +725,7 @@ ascii_day(char *p, int day) {
                *p++ = aday[day][1];
        }
        if (highlight)
-               p += sprintf(p, Sexit);
+               p += sprintf(p, "%s", Sexit);
        *p++ = ' ';
        return p;
 }