diff options
Diffstat (limited to 'src/lib9')
-rw-r--r-- | src/lib9/ctime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/ctime.c b/src/lib9/ctime.c index c5e11569..a9ce7b7a 100644 --- a/src/lib9/ctime.c +++ b/src/lib9/ctime.c @@ -130,7 +130,7 @@ gmtime(long tim) char* asctime(Tm *t) { - char *ncp; + const char *ncp; static char cbuf[30]; strcpy(cbuf, "Thu Jan 01 00:00:00 GMT 1970\n"); |