summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_set.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_set.c')
-rw-r--r--libtommath/bn_mp_set.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtommath/bn_mp_set.c b/libtommath/bn_mp_set.c
index dd4de3c..eaf7fed 100644
--- a/libtommath/bn_mp_set.c
+++ b/libtommath/bn_mp_set.c
@@ -16,11 +16,11 @@
*/
/* set to a digit */
-void mp_set (mp_int * a, mp_digit b)
+void mp_set(mp_int *a, mp_digit b)
{
- mp_zero (a);
- a->dp[0] = b & MP_MASK;
- a->used = (a->dp[0] != 0) ? 1 : 0;
+ mp_zero(a);
+ a->dp[0] = b & MP_MASK;
+ a->used = (a->dp[0] != 0) ? 1 : 0;
}
#endif