diff options
| author | Charles Forsyth <charles.forsyth@gmail.com> | 2015-03-27 15:49:33 +0000 |
|---|---|---|
| committer | Charles Forsyth <charles.forsyth@gmail.com> | 2015-03-27 15:49:33 +0000 |
| commit | c2179f29df449f0f6eb42c703f2233bb1409fe59 (patch) | |
| tree | bb56bf4cad0091bdb1798544c4cfed1b70007ea8 /utils | |
| parent | 16e80d5b12b9cea31fb4f65a14482ac97a5b3cbe (diff) | |
use the return value instead of passing a pointer
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/mk/run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mk/run.c b/utils/mk/run.c index 561d5f86..100779b1 100644 --- a/utils/mk/run.c +++ b/utils/mk/run.c @@ -280,7 +280,7 @@ usage(void) { long t; - time(&t); + t = time(0); if(tick) tslot[nrunning] += (t-tick); tick = t; |
