Remove dead code

ef-atr.c:41:16: warning: Value stored to 'category' during its initialization is
      never read
        unsigned char category = *buf;
                      ^          ~~~~


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5156 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2011-02-05 21:04:28 +00:00
parent 9906e5af66
commit 46946f285f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ sc_parse_ef_atr_content(struct sc_card *card, unsigned char *buf, size_t buflen)
const unsigned char *tag = NULL;
size_t taglen;
struct sc_ef_atr ef_atr;
unsigned char category = *buf;
unsigned char category;
LOG_FUNC_CALLED(ctx);