Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Brian Smith
nettle
Commits
9deeaa4f
Commit
9deeaa4f
authored
May 02, 2013
by
Niels Möller
Browse files
Replaced use of old gmp-1 type MP_INT.
parent
94bae335
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
9deeaa4f
2013-05-02 Niels Möller <nisse@lysator.liu.se>
* sexp-format.c (sexp_vformat): Use type mpz_srcptr rather
than the old MP_INT *.
2013-04-26 Niels Möller <nisse@lysator.liu.se>
* Many files: Use size_t rather than unsigned for data sizes.
...
...
sexp-format.c
View file @
9deeaa4f
...
...
@@ -290,7 +290,7 @@ sexp_vformat(struct nettle_buffer *buffer, const char *format, va_list args)
}
case
'b'
:
{
const
MP_INT
*
n
=
va_arg
(
args
,
const
MP_INT
*
);
mpz_srcptr
n
=
va_arg
(
args
,
mpz_srcptr
);
size_t
length
;
unsigned
prefix_length
;
...
...
Write
Preview
Supports
Markdown
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