Some constification and stacks that slipped through the cracks (how?).
[openssl.git] / crypto / bn / bn_shift.c
index 6dbe77b50fdc51e99c456628b255ccaf55d2f1ec..61aae65a6bfce8f86f7e4b358ee54bf16f613baf 100644 (file)
@@ -121,7 +121,7 @@ int BN_rshift1(BIGNUM *r, BIGNUM *a)
        return(1);
        }
 
-int BN_lshift(BIGNUM *r, BIGNUM *a, int n)
+int BN_lshift(BIGNUM *r, const BIGNUM *a, int n)
        {
        int i,nw,lb,rb;
        BN_ULONG *t,*f;