Fixed return value

This commit is contained in:
Kreeblah 2021-01-26 23:09:17 -08:00
parent c471a9161e
commit b90aa90131

View File

@ -15,7 +15,7 @@ int32_t readClockOffset() {
clock_file.close();
if(i == -1) {
free(clock_buf);
return 0;
return INT32_MIN;
} else if(i < 16) {
clock_buf[i] = 0;
}