mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PADLOCK] Fix sparse warning about 1-bit signed bit-field
Change the bit-field in struct cword to unsigned to shut sparse up. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
f17578decc
commit
2df15fffc6
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
|
||||
/* Control word. */
|
||||
struct cword {
|
||||
int __attribute__ ((__packed__))
|
||||
unsigned int __attribute__ ((__packed__))
|
||||
rounds:4,
|
||||
algo:3,
|
||||
keygen:1,
|
||||
|
|
Loading…
Reference in a new issue