From 369a99fe3a40f0321a50ca6ca8ba90880bf86039 Mon Sep 17 00:00:00 2001 From: eck Date: Thu, 4 Jan 1990 11:33:10 +0000 Subject: [PATCH] there are only 24 hours in a day, not 29 --- lang/cem/libcc.ansi/headers/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/libcc.ansi/headers/time.h b/lang/cem/libcc.ansi/headers/time.h index a9bc91dbe..b184634a7 100644 --- a/lang/cem/libcc.ansi/headers/time.h +++ b/lang/cem/libcc.ansi/headers/time.h @@ -33,7 +33,7 @@ typedef unsigned long clock_t; /* type returned by real time clock */ struct tm { int tm_sec; /* seconds after the minute - [0, 59] */ int tm_min; /* minutes after the hour - [0, 59] */ - int tm_hour; /* hours since midnight - [0, 28] */ + int tm_hour; /* hours since midnight - [0, 23] */ int tm_mday; /* day of the month - [1, 31] */ int tm_mon; /* months since January - [0, 11] */ int tm_year; /* years since 1900 */ -- 2.34.1