Skip to content

Commit

Permalink
Bug 1309159 - Make clang-format happy r=me
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Taubert committed Oct 12, 2016
1 parent 6132751 commit ef4fdb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/freebl/rijndael.c
Expand Up @@ -99,13 +99,13 @@ static PRBool use_hw_gcm = PR_FALSE;
((((PRUint32)b3) << 24) | \
(((PRUint32)b2) << 16) | \
(((PRUint32)b1) << 8) | \
((PRUint32)b0))
((PRUint32)b0))
#else
#define WORD4(b0, b1, b2, b3) \
((((PRUint32)b0) << 24) | \
(((PRUint32)b1) << 16) | \
(((PRUint32)b2) << 8) | \
((PRUint32)b3))
((PRUint32)b3))
#endif

/*
Expand Down Expand Up @@ -359,7 +359,7 @@ init_rijndael_tables(void)
((((PRUint32)SBOX((w >> 24) & 0xff)) << 24) | \
(((PRUint32)SBOX((w >> 16) & 0xff)) << 16) | \
(((PRUint32)SBOX((w >> 8) & 0xff)) << 8) | \
(((PRUint32)SBOX((w) & 0xff))))
(((PRUint32)SBOX((w)&0xff))))

#ifdef IS_LITTLE_ENDIAN
#define ROTBYTE(b) \
Expand Down

0 comments on commit ef4fdb5

Please sign in to comment.