From e7484015884d0fa966207e2864b974749434df5f Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 27 Nov 2014 19:46:01 -0200 Subject: [PATCH] Build fix. --- linux/Platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/Platform.c b/linux/Platform.c index f6c88170..668d9efd 100644 --- a/linux/Platform.c +++ b/linux/Platform.c @@ -76,5 +76,5 @@ int Platform_getUptime() { fscanf(fd, "%64lf", &uptime); fclose(fd); } - int totalseconds = (int) floor(uptime); + return (int) floor(uptime); }