Deleted stray semicolon from struct Des definition

This commit is contained in:
John Safranek 2013-09-17 16:42:52 -07:00
parent ee78b108cf
commit b0f94a34e6
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ enum {
/* DES encryption and decryption */
typedef struct Des {;
typedef struct Des {
word32 reg[DES_BLOCK_SIZE / sizeof(word32)]; /* for CBC mode */
word32 tmp[DES_BLOCK_SIZE / sizeof(word32)]; /* same */
byte keylen ; /* for Coldfire SEC */