aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/common.c3
1 files changed, 1 insertions, 2 deletions
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 <signal.h>
#include <paths.h>
#include <sys/socket.h>
-#include <sys/sysinfo.h>
#include <stdarg.h>
#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;
}