From 6865db5ad005bf2fda741f678ad01401ddad8444 Mon Sep 17 00:00:00 2001 From: "romuald@libnfc.org" Date: Wed, 26 Sep 2012 19:28:45 +0000 Subject: [PATCH] Remove some unused variables --- src/mfcuk_finger.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/mfcuk_finger.c b/src/mfcuk_finger.c index 781c156..ef292fc 100644 --- a/src/mfcuk_finger.c +++ b/src/mfcuk_finger.c @@ -64,17 +64,12 @@ int mfcuk_finger_default_decoder(mifare_classic_tag *dump) // Yes, I know C++ class inheritance would perfectly fit the decoders/comparators... Though C is more to my heart. Anyone to rewrite in C++? int mfcuk_finger_skgt_decoder(mifare_classic_tag *dump) { - unsigned char *dump_ptr = NULL; - unsigned short car_number = 0; - if (!dump) { fprintf(stderr, "ERROR: cannot decode a NULL pointer :)\n"); return 0; } - dump_ptr = (unsigned char *) dump; - printf("Bulgaria/Sofia/SKGT public transport card information decoder (info credits to Andy)\n"); mfcuk_finger_default_decoder(dump);