From 9bd3b56acd7305b3194246187928485022ec6093 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 16 Feb 2012 00:41:21 +0100 Subject: fb-helper.c: remove "OVER 9000" joke 9000 hours is just over one year and probably nobody is ever going to hit this. Signed-off-by: Florian Pritz --- fb-helper.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fb-helper.c b/fb-helper.c index 593a3be..c012c9f 100644 --- a/fb-helper.c +++ b/fb-helper.c @@ -109,9 +109,7 @@ void format_time(char *buf, int bufsize, time_t time) minutes = (time/60)%60; hours = time/60/60; - if (hours > 9000) { - snprintf(buf, bufsize, "OVER 9000!!"); - } else if (hours > 0) { + if (hours > 0) { snprintf(buf, bufsize, "%d:%02d:%02d", hours, minutes, seconds); } else { snprintf(buf, bufsize, "%02d:%02d", minutes, seconds); -- cgit v1.2.3-24-g4f1b