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
21457417
Commit
21457417
authored
Sep 03, 2016
by
Niels Möller
Browse files
Fix pointed signedness warning in yarrow-test.
parent
3d9cee92
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
21457417
...
...
@@ -17,6 +17,9 @@
* testsuite/sexp-test.c (test_main): Use const char * for assoc
keys. Overlooked in 2016-08-16 change.
* testsuite/yarrow-test.c (test_main): Fix pointer
signednesss warning.
2016-08-29 Niels Möller <nisse@lysator.liu.se>
* sexp-format.c (strlen_u8): New helper function.
...
...
testsuite/yarrow-test.c
View file @
21457417
...
...
@@ -93,7 +93,7 @@ test_main(void)
unsigned
i
;
static
const
char
zeroes
[
100
];
static
const
char
unsigned
zeroes
[
100
];
yarrow256_init
(
&
yarrow
,
2
,
sources
);
...
...
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