Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
557049bf
Commit
557049bf
authored
Mar 29, 2022
by
Rob Swindell
💬
Browse files
Fix signed/unsigned compare warning reported by Borland C++.
parent
40eec7fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/xpdev/semfile.c
src/xpdev/semfile.c
+1
-1
No files found.
src/xpdev/semfile.c
View file @
557049bf
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment