Fix warning

This commit is contained in:
akuker
2020-08-16 19:12:08 -05:00
parent 2fef790a7f
commit adda58ffd0

View File

@@ -146,7 +146,7 @@ BOOL Rasctl_Command::IsValid(FILE *fp){
} }
// Check that the file is 1 byte or larger // Check that the file is 1 byte or larger
if(stat_buffer.st_size < 1){ if(stat_buffer.st_size < 1){
FPRT(fp, "File must not be empty. %s is %ld bytes in size",file,stat_buffer.st_size); FPRT(fp, "File must not be empty. %s is %lld bytes in size",file,stat_buffer.st_size);
return FALSE; return FALSE;
} }
} }