rsaenh: Indentation fix.

This commit is contained in:
Andrew Talbot 2012-12-20 19:41:46 +00:00 committed by Alexandre Julliard
parent b2b4bb9a12
commit d7d1e40240

View file

@ -3519,8 +3519,8 @@ mp_read_unsigned_bin (mp_int * a, const unsigned char *b, int c)
return res;
}
a->dp[0] |= *b++;
a->used += 1;
a->dp[0] |= *b++;
a->used += 1;
}
mp_clamp (a);
return MP_OKAY;