diff options
author | José Fonseca <[email protected]> | 2011-01-13 11:44:16 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-01-13 11:44:16 +0000 |
commit | fe2cfd9b19657274244b187310b706ff5aa09728 (patch) | |
tree | b9bcb8d035f1f5284c9575d9b35486f30dba0e21 /src | |
parent | a22a332fc7cc54d4d0973dcd21a90159cc51de1a (diff) |
util: Don't limit debug_printf message length on unices.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c index 2ad2f95b13e..a19db3a6576 100644 --- a/src/gallium/auxiliary/util/u_debug.c +++ b/src/gallium/auxiliary/util/u_debug.c @@ -47,14 +47,19 @@ void _debug_vprintf(const char *format, va_list ap) { +#if defined(PIPE_OS_WINDOWS) || defined(PIPE_OS_EMBEDDED) /* We buffer until we find a newline. */ static char buf[4096] = {'\0'}; size_t len = strlen(buf); int ret = util_vsnprintf(buf + len, sizeof(buf) - len, format, ap); if(ret > (int)(sizeof(buf) - len - 1) || util_strchr(buf + len, '\n')) { - os_log_message(buf); + os_log_message(buf * h); buf[0] = '\0'; } +#else + /* Just print as-is to stderr */ + vfprintf(stderr, format, ap); +#endif } |