summaryrefslogtreecommitdiff
path: root/src/localtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/localtime.c')
-rw-r--r--src/localtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/localtime.c b/src/localtime.c
index e2ac81f98..1cefdfa88 100644
--- a/src/localtime.c
+++ b/src/localtime.c
@@ -108,7 +108,7 @@ void nolocks_localtime(struct tm *tmp, time_t t, time_t tz, int dst) {
int main(void) {
/* Obtain timezone and daylight info. */
- tzset(); /* Now 'timezome' global is populated. */
+ tzset(); /* Now 'timezone' global is populated. */
time_t t = time(NULL);
struct tm *aux = localtime(&t);
int daylight_active = aux->tm_isdst;