put back missing paren.
This commit is contained in:
parent
49b7958945
commit
7435ccdc0f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user