# HG changeset patch # User Matt Johnston # Date 1094139270 0 # Node ID 901233045998427607028da5368afe2c76e9e387 # Parent b939f2d4431e298a71daf02ebb962460664158ff Fix typo in the big-endian macros diff -r b939f2d4431e -r 901233045998 mycrypt_macros.h --- a/mycrypt_macros.h Tue Jun 15 16:47:55 2004 +0000 +++ b/mycrypt_macros.h Thu Sep 02 15:34:30 2004 +0000 @@ -125,7 +125,7 @@ #ifdef ENDIAN_BIG #define STORE32L(x, y) \ - { (y)[z0] = (unsigned char)(((x)>>24)&255); (y)[1] = (unsigned char)(((x)>>16)&255); \ + { (y)[0] = (unsigned char)(((x)>>24)&255); (y)[1] = (unsigned char)(((x)>>16)&255); \ (y)[2] = (unsigned char)(((x)>>8)&255); (y)[3] = (unsigned char)((x)&255); } #define LOAD32L(x, y) \