* localtime.c (tzset_unlocked): Don't return a void expression.

The C standard does not allow this, and Sun C 5.12 rejects it.
This commit is contained in:
Paul Eggert
2014-08-27 14:16:34 -07:00
parent 4cc7d12352
commit df374d40ff
+1 -1
View File
@@ -1229,7 +1229,7 @@ tzsetwall(void)
static void
tzset_unlocked(void)
{
return tzsetlcl(getenv("TZ"));
tzsetlcl(getenv("TZ"));
}
void