mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-12-04 14:46:31 -05:00
Fix: Corrected a nibbleswap in logging code
This commit is contained in:
parent
c214da3f52
commit
ecdfa060d7
@ -198,8 +198,8 @@ void igloo_private__vsnprintf(char *str, size_t size, const char *format, va_lis
|
|||||||
} else {
|
} else {
|
||||||
*(str++) = '\\';
|
*(str++) = '\\';
|
||||||
*(str++) = 'x';
|
*(str++) = 'x';
|
||||||
*(str++) = hextable[(*arg >> 0) & 0x0F];
|
|
||||||
*(str++) = hextable[(*arg >> 4) & 0x0F];
|
*(str++) = hextable[(*arg >> 4) & 0x0F];
|
||||||
|
*(str++) = hextable[(*arg >> 0) & 0x0F];
|
||||||
/* Also count the additional chars for string size and block length */
|
/* Also count the additional chars for string size and block length */
|
||||||
size -= 3;
|
size -= 3;
|
||||||
block_len -= 3;
|
block_len -= 3;
|
||||||
|
Loading…
Reference in New Issue
Block a user