Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
4c9bcdc2
Commit
4c9bcdc2
authored
Jun 24, 2001
by
Niels Möller
Browse files
* src/werror.c (werror_vformat): Implemented the 'p' (paranoia)
modifier for %c. Rev: src/werror.c:1.58
parent
5b1ee515
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/werror.c
View file @
4c9bcdc2
...
...
@@ -422,7 +422,7 @@ werror_vformat(const char *f, va_list args)
(
do_hex
?
werror_hex
:
werror_decimal
)(
va_arg
(
args
,
UINT32
));
break
;
case
'c'
:
werror_putc
(
va_arg
(
args
,
int
));
(
do_paranoia
?
werror_paranoia_putc
:
werror_putc
)
(
va_arg
(
args
,
int
));
break
;
case
'n'
:
werror_bignum
(
va_arg
(
args
,
MP_INT
*
),
do_hex
?
16
:
10
);
...
...
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