summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_to_unsigned_bin_n.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_to_unsigned_bin_n.c')
-rw-r--r--libtommath/bn_mp_to_unsigned_bin_n.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_to_unsigned_bin_n.c b/libtommath/bn_mp_to_unsigned_bin_n.c
index f671621..5ee28f1 100644
--- a/libtommath/bn_mp_to_unsigned_bin_n.c
+++ b/libtommath/bn_mp_to_unsigned_bin_n.c
@@ -16,7 +16,7 @@
*/
/* store in unsigned [big endian] format */
-int mp_to_unsigned_bin_n (mp_int * a, unsigned char *b, unsigned long *outlen)
+int mp_to_unsigned_bin_n(mp_int *a, unsigned char *b, unsigned long *outlen)
{
if (*outlen < (unsigned long)mp_unsigned_bin_size(a)) {
return MP_VAL;