From: Eric Andersen Date: Wed, 19 May 2004 08:54:28 +0000 (-0000) Subject: Fix a compile problem X-Git-Tag: 1_00_rc1~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=28885c3f20a38820c8c05d900581d3feb410b36a;p=oweals%2Fbusybox.git Fix a compile problem --- diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c index ce76c516d..c5a24fc62 100644 --- a/networking/udhcp/common.c +++ b/networking/udhcp/common.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include "common.h" @@ -42,7 +41,7 @@ long uptime(void) { struct sysinfo info; sysinfo(&info); - printf("uptime %d\n", info.uptime); + printf("uptime %ld\n", (long)info.uptime); return info.uptime; }