Minor compile message cleanup
This commit is contained in:
parent
3a61487a2d
commit
573f7bce0b
1 changed files with 2 additions and 2 deletions
|
@ -1194,7 +1194,7 @@ static char *tmxr_debug_buf = NULL;
|
||||||
static size_t tmxr_debug_buf_used = 0;
|
static size_t tmxr_debug_buf_used = 0;
|
||||||
static size_t tmxr_debug_buf_size = 0;
|
static size_t tmxr_debug_buf_size = 0;
|
||||||
|
|
||||||
static tmxr_buf_debug_char (char value)
|
static void tmxr_buf_debug_char (char value)
|
||||||
{
|
{
|
||||||
if (tmxr_debug_buf_used+2 > tmxr_debug_buf_size) {
|
if (tmxr_debug_buf_used+2 > tmxr_debug_buf_size) {
|
||||||
tmxr_debug_buf_size += 1024;
|
tmxr_debug_buf_size += 1024;
|
||||||
|
@ -1204,7 +1204,7 @@ tmxr_debug_buf[tmxr_debug_buf_used++] = value;
|
||||||
tmxr_debug_buf[tmxr_debug_buf_used] = '\0';
|
tmxr_debug_buf[tmxr_debug_buf_used] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
static tmxr_buf_debug_string (const char *string)
|
static void tmxr_buf_debug_string (const char *string)
|
||||||
{
|
{
|
||||||
while (*string)
|
while (*string)
|
||||||
tmxr_buf_debug_char (*string++);
|
tmxr_buf_debug_char (*string++);
|
||||||
|
|
Loading…
Add table
Reference in a new issue