put back missing paren.

This commit is contained in:
christos 2014-11-21 01:18:39 +00:00
parent 49b7958945
commit 7435ccdc0f

View File

@ -1,4 +1,4 @@
/* $NetBSD: clock.c,v 1.4 2014/11/20 15:48:05 christos Exp $ */
/* $NetBSD: clock.c,v 1.5 2014/11/21 01:18:39 christos Exp $ */
/*
* Copyright (c) 2003 Tetsuya Isaki. All rights reserved.
@ -73,9 +73,8 @@ getsecs(void)
days++;
/* now we have days since Jan 1, 1970. the rest is easy... */
return days * SECS_PER_DAY) + (hour * SECS_PER_HOUR)
+ (min * SECS_PER_MINUTE) + sec
+ (rtc_offset * 60);
return (days * SECS_PER_DAY) + (hour * SECS_PER_HOUR)
+ (min * SECS_PER_MINUTE) + sec + (rtc_offset * 60);
}
void