From a334319f6530564d22e775935d9c91663623a1b4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 22 Dec 2004 20:10:10 +0000 Subject: (CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4. --- timezone/scheck.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'timezone/scheck.c') diff --git a/timezone/scheck.c b/timezone/scheck.c index bc15637..39feeba 100644 --- a/timezone/scheck.c +++ b/timezone/scheck.c @@ -1,6 +1,6 @@ #ifndef lint #ifndef NOID -static char elsieid[] = "@(#)scheck.c 8.17"; +static char elsieid[] = "@(#)scheck.c 8.15"; #endif /* !defined lint */ #endif /* !defined NOID */ @@ -8,7 +8,7 @@ static char elsieid[] = "@(#)scheck.c 8.17"; #include "private.h" -const char * +char * scheck(string, format) const char * const string; const char * const format; @@ -17,10 +17,11 @@ const char * const format; register const char * fp; register char * tp; register int c; - register const char * result; + register char * result; char dummy; + static char nada; - result = ""; + result = &nada; if (string == NULL || format == NULL) return result; fbuf = imalloc((int) (2 * strlen(format) + 4)); -- cgit v1.1