LLVM unused variable warning

This commit is contained in:
Viktor Dukhovni
2015-03-04 19:52:58 -05:00
committed by Viktor Dukhovni
parent 0d52fd607f
commit d4fda7e4f0

View File

@@ -384,7 +384,6 @@ krb5_parse_name(krb5_context context,
static const char quotable_chars[] = " \n\t\b\\/@"; static const char quotable_chars[] = " \n\t\b\\/@";
static const char replace_chars[] = " ntb\\/@"; static const char replace_chars[] = " ntb\\/@";
static const char nq_chars[] = " \\/@";
#define add_char(BASE, INDEX, LEN, C) do { if((INDEX) < (LEN)) (BASE)[(INDEX)++] = (C); }while(0); #define add_char(BASE, INDEX, LEN, C) do { if((INDEX) < (LEN)) (BASE)[(INDEX)++] = (C); }while(0);