Missing close

This commit is contained in:
SeekBytes
2022-05-01 12:05:05 +02:00
committed by GitHub
parent b78d09fc24
commit 630e80f724
+1 -1
View File
@@ -29,6 +29,6 @@ int main(){
int upseconds = (uptime - (updays * 86400) - (uphours * 3600) - (upmins * 60));
printf("Days: %d Hours: %d Minutes: %d Seconds: %d \n", updays, uphours, upmins, upseconds);
close(uptime_fd);
return 0;
}