exclude unused-but-set variable

Signed-off-by: SergeySlice <sergey.slice@gmail.com>
This commit is contained in:
SergeySlice 2022-03-18 19:11:55 +03:00
parent d6dce38577
commit 9f24acb5d9
2 changed files with 4 additions and 4 deletions

View File

@ -6,8 +6,8 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Clover r5142\n" "Project-Id-Version: Clover r5145\n"
"POT-Creation-Date: 2021-11-02 19:01+0300\n" "POT-Creation-Date: 2022-03-16 19:08+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -512,7 +512,7 @@ __attribute__((noinline, section(".printf_lite")))
#endif #endif
static void print_ulonglong(UINT_BIGGEST_TYPE v, unsigned int base, PrintfParams* printfParams, int printfSign) static void print_ulonglong(UINT_BIGGEST_TYPE v, unsigned int base, PrintfParams* printfParams, int printfSign)
{ {
int n = 0; // int n = 0;
unsigned INT_BIGGEST_TYPE d = 1; unsigned INT_BIGGEST_TYPE d = 1;
#if PRINTF_LITE_FIELDWIDTH_SUPPORT == 1 #if PRINTF_LITE_FIELDWIDTH_SUPPORT == 1
int nbDigits = 1 + printfSign; int nbDigits = 1 + printfSign;
@ -550,7 +550,7 @@ static void print_ulonglong(UINT_BIGGEST_TYPE v, unsigned int base, PrintfParams
#else #else
print_char_macro( (char)(dgt + '0'), printfParams); print_char_macro( (char)(dgt + '0'), printfParams);
#endif #endif
n += 1; // n += 1;
} }
} }