# HG changeset patch # User reimar # Date 1277745595 0 # Node ID 2b38811998d1fa0e9c415788b8e83f7e3f10a189 # Parent 567489a515b2954410076889eac5ed1c36cd59cd Pass subshift an argument of the proper type. No changes in generated code. diff -r 567489a515b2 -r 2b38811998d1 aes.c --- a/aes.c Mon Jun 28 17:11:48 2010 +0000 +++ b/aes.c Mon Jun 28 17:19:55 2010 +0000 @@ -177,7 +177,7 @@ for(i=1; iround_key[i][0], 16); - subshift(tmp[1], 0, sbox); + subshift(&tmp[1], 0, sbox); mix(tmp, dec_multbl, 1, 3); memcpy(a->round_key[i][0], tmp[0], 16); }