Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
snhenson committed Apr 15, 2006
1 parent b095418 commit d4426e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/engine/eng_padlock.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ struct padlock_cipher_data
int dgst:1; /* n/a in C3 */
int align:1; /* n/a in C3 */
int ciphr:1; /* n/a in C3 */
int keygen:1;
unsigned int keygen:1;
int interm:1;
int encdec:1;
unsigned int encdec:1;
int ksize:2;
} b;
} cword; /* Control word */
Expand Down

0 comments on commit d4426e7

Please sign in to comment.