matthiasgoergens opened a new issue, #96:
URL: https://github.com/apache/incubator-milagro-crypto-c/issues/96

   When I am building, I am getting warnings like the following:
   
   ```
   
/home/matthias/incubator-milagro-crypto-c/target/default/src/big_256_56.c:151:36:
 warning: argument 'f' of type 'DBIG_256_56' (aka 'long[10]') with mismatched 
bound [-Warray-parameter]
   void BIG_256_56_dcmove(DBIG_256_56 f,DBIG_256_56 g,int d)
                                      ^
   
/home/matthias/incubator-milagro-crypto-c/target/default/include/big_256_56.h:115:42:
 note: previously declared as 'BIG_256_56' (aka 'long[5]') here
   extern void BIG_256_56_dcmove(BIG_256_56 x,BIG_256_56 y,int s);
   ```
   
   When checking the sources, I see `BIG_XXX` vs `DBIG_XXX`:
   
   ```
   include/big.h.in:extern void BIG_XXX_dcmove(BIG_XXX x,BIG_XXX y,int s);
   src/big.c.in:void BIG_XXX_dcmove(DBIG_XXX f,DBIG_XXX g,int d)
   ```
   
   Is this intentional?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@milagro.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@milagro.apache.org
For additional commands, e-mail: issues-h...@milagro.apache.org

Reply via email to