From 573f7bce0b19458650218d838c675730a7f48875 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 14 Sep 2011 08:47:59 -0700 Subject: [PATCH] Minor compile message cleanup --- sim_tmxr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim_tmxr.c b/sim_tmxr.c index 686648f4..1fc4b25f 100644 --- a/sim_tmxr.c +++ b/sim_tmxr.c @@ -1194,7 +1194,7 @@ static char *tmxr_debug_buf = NULL; static size_t tmxr_debug_buf_used = 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) { 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'; } -static tmxr_buf_debug_string (const char *string) +static void tmxr_buf_debug_string (const char *string) { while (*string) tmxr_buf_debug_char (*string++);