From 09e6808333765b5a38bd8d49db6c7dd00ac80469 Mon Sep 17 00:00:00 2001 From: rgrimes Date: Sat, 28 May 1994 06:38:34 +0000 Subject: Why cast a constant to (unsigned long) when you can make it this by appending UL. --- usr.sbin/timed/timedc/cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/timed/timedc/cmds.c b/usr.sbin/timed/timedc/cmds.c index 557f721..9e0aa21 100644 --- a/usr.sbin/timed/timedc/cmds.c +++ b/usr.sbin/timed/timedc/cmds.c @@ -77,7 +77,7 @@ void bytenetorder(struct tsp *); void bytehostorder(struct tsp *); -#define BU ((unsigned long)2208988800) /* seconds before UNIX epoch */ +#define BU (2208988800UL) /* seconds before UNIX epoch */ /* compute the difference between our date and another machine -- cgit v1.1