summaryrefslogtreecommitdiff
path: root/utils/mk/run.c
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2015-03-26 23:58:56 +0000
committerCharles Forsyth <charles.forsyth@gmail.com>2015-03-26 23:58:56 +0000
commitc1c59d6c323e849a9bc1ea8316e83fa38dcf916a (patch)
tree14d3015ba38d5906bdfc50a8781799d8399b476f /utils/mk/run.c
parent296a92c47c93433ec03ed3db1dbfc50793bbaa64 (diff)
the compiler will pick the right pointer type for 0 param
Diffstat (limited to 'utils/mk/run.c')
-rw-r--r--utils/mk/run.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mk/run.c b/utils/mk/run.c
index 4ef4221a..561d5f86 100644
--- a/utils/mk/run.c
+++ b/utils/mk/run.c
@@ -71,7 +71,7 @@ sched(void)
else if(explain)
Bprint(&bout, "no touch of virtual '%s'\n", n->name);
}
- n->time = time((long *)0);
+ n->time = time(0);
MADESET(n, MADE);
}
} else {