diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 2003-07-18 16:04:32 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 2003-07-18 16:04:32 +0000 |
commit | def6489df62929c83d4aab3caa025c83f55cc043 (patch) | |
tree | 27575c211e55a0636319d3f422eb73a9ed62a8c1 | |
parent | 4615eb20c3bd615cad17725bbfd71b3667ac1d3d (diff) |
Notes
-rw-r--r-- | lib/libc/gen/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/time.c b/lib/libc/gen/time.c index 5a45d574a163b..21548335fe268 100644 --- a/lib/libc/gen/time.c +++ b/lib/libc/gen/time.c @@ -47,8 +47,8 @@ time(t) struct timeval tt; if (gettimeofday(&tt, (struct timezone *)0) < 0) - return(-1); + return (-1); if (t) *t = tt.tv_sec; - return(tt.tv_sec); + return (tt.tv_sec); } |