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
27dfa4f6
Commit
27dfa4f6
authored
Nov 18, 2021
by
Rob Swindell
💬
Browse files
Resolve gcc warning
warning: format ‘%lx’ expects argument of type ‘long unsigned int’
parent
06a56bba
Pipeline
#2482
passed with stage
in 14 minutes and 55 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/sbbs3/sbbsecho.c
src/sbbs3/sbbsecho.c
+1
-1
No files found.
src/sbbs3/sbbsecho.c
View file @
27dfa4f6
...
...
@@ -1117,7 +1117,7 @@ int create_netmail(const char *to, const smbmsg_t* msg, const char *subject, con
}
fprintf
(
fp
,
"
\r
"
);
}
fprintf
(
fp
,
"
\1
MSGID: %s %08lx
\r
"
,
smb_faddrtoa
(
&
faddr
,
NULL
),
time32
(
NULL
));
fprintf
(
fp
,
"
\1
MSGID: %s %08lx
\r
"
,
smb_faddrtoa
(
&
faddr
,
NULL
),
(
ulong
)
time32
(
NULL
));
}
else
{
if
(
msg
->
ftn_msgid
!=
NULL
)
fprintf
(
fp
,
"
\1
MSGID: %.256s
\r
"
,
msg
->
ftn_msgid
);
...
...
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