summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/os/os_stream_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/os/os_stream_str.c')
-rw-r--r--src/gallium/auxiliary/os/os_stream_str.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/os/os_stream_str.c b/src/gallium/auxiliary/os/os_stream_str.c
index b5c7270d2a..be9478b2a1 100644
--- a/src/gallium/auxiliary/os/os_stream_str.c
+++ b/src/gallium/auxiliary/os/os_stream_str.c
@@ -118,6 +118,7 @@ os_str_stream_create(size_t size)
stream->base.close = &os_str_stream_close;
stream->base.write = &os_str_stream_write;
stream->base.flush = &os_str_stream_flush;
+ stream->base.vprintf = &os_default_stream_vprintf;
stream->str = os_malloc(size);
if(!stream->str)