Skip to content
Snippets Groups Projects
Commit 557049bf authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix signed/unsigned compare warning reported by Borland C++.

parent 40eec7fa
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -144,5 +144,5 @@ BOOL semfile_signal(const char* fname, const char* text)
/* update the time stamp */
ut.actime = ut.modtime = time(NULL);
return utime(fname, &ut)==0 && wrlen == textlen;
return utime(fname, &ut)==0 && wrlen == (ssize_t)textlen;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment