mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
Base64: silence warnings
This commit is contained in:
+1
-1
@@ -55,7 +55,7 @@ void init_decode_table()
|
||||
code = 0x3E;
|
||||
if (ch == '/' || ch == '_')
|
||||
code = 0x3F;
|
||||
decode_table[ch] = (char) code;
|
||||
decode_table[ch] = (uint8_t) code;
|
||||
} while (ch++ < 0xFF);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user