summaryrefslogtreecommitdiff
path: root/timezone/scheck.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
commita334319f6530564d22e775935d9c91663623a1b4 (patch)
treeb5877475619e4c938e98757d518bb1e9cbead751 /timezone/scheck.c
parent0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff)
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'timezone/scheck.c')
-rw-r--r--timezone/scheck.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/timezone/scheck.c b/timezone/scheck.c
index bc156379a0..39feeba701 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));