summaryrefslogtreecommitdiffstats
path: root/src/re3.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/re3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/re3.cpp b/src/re3.cpp
index 7fa9eedb..948d9aa0 100644
--- a/src/re3.cpp
+++ b/src/re3.cpp
@@ -189,7 +189,7 @@ void re3_debug(char *format, ...)
vsprintf_s(re3_buff, re3_buffsize, format, va);
va_end(va);
- printf("%s\n", re3_buff);
+ printf("%s", re3_buff);
}
void re3_trace(const char *filename, unsigned int lineno, const char *func, char *format, ...)