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
Dmitry Baryshkov
nettle
Commits
a0aa1c61
Commit
a0aa1c61
authored
Sep 03, 2016
by
Niels Möller
Browse files
Fix pointer signedness warning in sexp-conv.
parent
34b3a642
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
a0aa1c61
...
...
@@ -19,6 +19,7 @@
* testsuite/sexp-format-test.c (test_main): Likewise.
* testsuite/rsa-encrypt-test.c (test_main): Likewise.
* tools/nettle-lfib-stream.c (main): Likewise.
* tools/output.c (sexp_put_string): Likewise.
* testsuite/testutils.c (test_armor): Change ascii argument to
const char *.
...
...
tools/output.c
View file @
a0aa1c61
...
...
@@ -203,7 +203,7 @@ sexp_put_string(struct sexp_output *output, enum sexp_mode mode,
{
if
(
!
string
->
size
)
sexp_put_data
(
output
,
2
,
(
mode
==
SEXP_ADVANCED
)
?
"
\"\"
"
:
"0:"
);
(
const
uint8_t
*
)
(
(
mode
==
SEXP_ADVANCED
)
?
"
\"\"
"
:
"0:"
)
)
;
else
if
(
mode
==
SEXP_ADVANCED
)
{
...
...
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