This commit is contained in:
Hisham Muhammad 2014-11-27 19:58:07 -02:00
commit 5578a316f0
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ int Platform_getUptime() {
fscanf(fd, "%64lf", &uptime); fscanf(fd, "%64lf", &uptime);
fclose(fd); fclose(fd);
} }
int totalseconds = (int) floor(uptime); return (int) floor(uptime);
} }
void Platform_getLoadAverage(double* one, double* five, double* fifteen) { void Platform_getLoadAverage(double* one, double* five, double* fifteen) {