From: Klas Lindfors Date: Mon, 18 Jun 2012 06:03:07 +0000 (+0200) Subject: remove init of char to NULL, removes warning. X-Git-Tag: v1.8.0~86 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e36dfcb1b3f560984167726ba5da20d2202565a;p=yubikey-personalization remove init of char to NULL, removes warning. --- diff --git a/ykpersonalize.c b/ykpersonalize.c index 6c4d24d..0ec0784 100644 --- a/ykpersonalize.c +++ b/ykpersonalize.c @@ -66,7 +66,7 @@ int main(int argc, char **argv) /* Options */ char *salt = NULL; char ndef_string[128] = {0}; - char ndef_type = NULL; + char ndef_type; bool error = false; int exit_code = 0;