Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HardenedBSD
HardenedBSD
Commits
f5924ad8
Commit
f5924ad8
authored
Nov 08, 2022
by
Jose Luis Duran
Committed by
Konstantin Belousov
Jan 25, 2023
Browse files
strfmon(3): Match the return type
Reviewed by: kib MFC after: 1 week
parent
59cc636d
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/libc/stdlib/strfmon.c
View file @
f5924ad8
...
...
@@ -645,7 +645,7 @@ ssize_t
strfmon
(
char
*
__restrict
s
,
size_t
maxsize
,
const
char
*
__restrict
format
,
...)
{
size_t
ret
;
s
size_t
ret
;
va_list
ap
;
va_start
(
ap
,
format
);
...
...
@@ -659,7 +659,7 @@ ssize_t
strfmon_l
(
char
*
__restrict
s
,
size_t
maxsize
,
locale_t
loc
,
const
char
*
__restrict
format
,
...)
{
size_t
ret
;
s
size_t
ret
;
va_list
ap
;
va_start
(
ap
,
format
);
...
...
Shawn Webb
@shawn.webb
mentioned in commit
fd22978f
·
Jan 31, 2023
mentioned in commit
fd22978f
mentioned in commit fd22978f860c03543b7b951c6a0886ef3b883c5e
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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