Whitespace after keywords per style(9).

This commit is contained in:
Garrett Wollman 2003-07-18 16:04:32 +00:00
parent 4615eb20c3
commit def6489df6

View File

@ -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);
}