Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Wim Lewis
nettle
Commits
9deeaa4f
Commit
9deeaa4f
authored
May 02, 2013
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replaced use of old gmp-1 type MP_INT.
parent
94bae335
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
ChangeLog
ChangeLog
+5
-0
sexp-format.c
sexp-format.c
+1
-1
No files found.
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
Markdown
is supported
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