remove ugly warning-suppression hack from crypt - this invokes UB!

This commit is contained in:
Rich Felker 2011-04-11 01:50:26 -04:00
parent 5eaa22132b
commit 0161244784
1 changed files with 1 additions and 1 deletions

View File

@ -2391,7 +2391,7 @@ static void des_setkey(struct des_ctx *ctx, const unsigned char *key)
static void do_des(struct des_ctx *ctx, uint32_t *l_out, uint32_t *r_out, int count)
{
uint32_t l, r, *kl, *kr;
uint32_t f = f; /* silence gcc */
uint32_t f;
uint32_t r48l, r48r;
int round;