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
90baf9cd
Commit
90baf9cd
authored
Mar 28, 2022
by
Rob Swindell
💬
Browse files
Fix another new GCC warning I missed
parent
2e8efed6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/sbbs3/atcodes.cpp
src/sbbs3/atcodes.cpp
+1
-1
No files found.
src/sbbs3/atcodes.cpp
View file @
90baf9cd
...
...
@@ -1728,7 +1728,7 @@ const char* sbbs_t::atcode(char* sp, char* str, size_t maxlen, long* pmode, bool
else
if
(
!
strcmp
(
sp
,
"FTODAY"
))
safe_snprintf
(
str
,
maxlen
,
"%lu"
,
(
ulong
)
stats
.
ftoday
);
else
if
(
!
strcmp
(
sp
,
"NUSERS"
))
safe_snprintf
(
str
,
maxlen
,
"%u"
,
stats
.
nusers
);
safe_snprintf
(
str
,
maxlen
,
"%
l
u"
,
stats
.
nusers
);
return
(
str
);
}
...
...
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