From: Christoph Mallon Date: Fri, 8 Jul 2011 11:52:12 +0000 (+0200) Subject: Remove dead assignment. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=7fdc2c1b75a824a1ec220a96f11ccd3d5359ba97;hp=7bc7813bba67c6cc01723b0954e4b08bf9349ace;p=cparser Remove dead assignment. --- diff --git a/format_check.c b/format_check.c index d77b588..37d2598 100644 --- a/format_check.c +++ b/format_check.c @@ -768,7 +768,6 @@ static void check_scanf_format(const call_argument_t *arg, break; case 'c': - expected_type = type_int; switch (fmt_mod) { case FMT_MOD_NONE: expected_type = type_char; break; case FMT_MOD_l: expected_type = type_wchar_t; break;