SCCS-file: localtime.c

SCCS-SID: 7.44
This commit is contained in:
Arthur David Olson
2012-07-18 03:02:18 -04:00
committed by Paul Eggert
parent 5759685c50
commit 71b4cffbed
+1 -1
View File
@@ -190,7 +190,7 @@ const char * const codep;
register long result; register long result;
register int i; register int i;
result = 0; result = (codep[0] & 0x80) ? ~0L : 0L;
for (i = 0; i < 4; ++i) for (i = 0; i < 4; ++i)
result = (result << 8) | (codep[i] & 0xff); result = (result << 8) | (codep[i] & 0xff);
return result; return result;