summaryrefslogtreecommitdiffstats
path: root/src/util/u_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/u_debug.c')
-rw-r--r--src/util/u_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/u_debug.c b/src/util/u_debug.c
index b27bf7c5480..cd31ca6e130 100644
--- a/src/util/u_debug.c
+++ b/src/util/u_debug.c
@@ -51,7 +51,7 @@ void
_debug_vprintf(const char *format, va_list ap)
{
static char buf[4096] = {'\0'};
-#if defined(PIPE_OS_WINDOWS) || defined(EMBEDDED_DEVICE)
+#if DETECT_OS_WINDOWS || defined(EMBEDDED_DEVICE)
/* We buffer until we find a newline. */
size_t len = strlen(buf);
int ret = vsnprintf(buf + len, sizeof(buf) - len, format, ap);