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); }