summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_zero.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_zero.c')
-rw-r--r--libtommath/bn_mp_zero.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/libtommath/bn_mp_zero.c b/libtommath/bn_mp_zero.c
index a7d59e4..08aac2a 100644
--- a/libtommath/bn_mp_zero.c
+++ b/libtommath/bn_mp_zero.c
@@ -16,18 +16,18 @@
*/
/* set to zero */
-void mp_zero (mp_int * a)
+void mp_zero(mp_int *a)
{
- int n;
- mp_digit *tmp;
+ int n;
+ mp_digit *tmp;
- a->sign = MP_ZPOS;
- a->used = 0;
+ a->sign = MP_ZPOS;
+ a->used = 0;
- tmp = a->dp;
- for (n = 0; n < a->alloc; n++) {
- *tmp++ = 0;
- }
+ tmp = a->dp;
+ for (n = 0; n < a->alloc; n++) {
+ *tmp++ = 0;
+ }
}
#endif