aboutsummaryrefslogtreecommitdiff
path: root/stand/libofw/ofw_time.c
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libofw/ofw_time.c')
-rw-r--r--stand/libofw/ofw_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/libofw/ofw_time.c b/stand/libofw/ofw_time.c
index c2da603bb52e..48372428ae29 100644
--- a/stand/libofw/ofw_time.c
+++ b/stand/libofw/ofw_time.c
@@ -35,7 +35,7 @@ time(time_t *tloc)
secs = OF_milliseconds() / 1000;
if (tloc)
*tloc = secs;
- return secs;
+ return (secs);
}
time_t
@@ -43,7 +43,7 @@ getsecs(void)
{
time_t n = 0;
time(&n);
- return n;
+ return (n);
}
void