intel: Fix uninitialized values in debug output for renderbuffer mapping.
authorEric Anholt <eric@anholt.net>
Tue, 13 Dec 2011 20:03:37 +0000 (12:03 -0800)
committerEric Anholt <eric@anholt.net>
Wed, 14 Dec 2011 21:18:03 +0000 (13:18 -0800)
src/mesa/drivers/dri/intel/intel_fbo.c

index 4fcde23fe8208507be35fb98dcc388273b088c90..de4807a9ee9b06bb0a08c6e6e24365e2347f29dd 100644 (file)
@@ -146,7 +146,7 @@ intel_map_renderbuffer(struct gl_context *ctx,
 
    DBG("%s: rb %d (%s) mt mapped: (%d, %d) (%dx%d) -> %p/%d\n",
        __FUNCTION__, rb->Name, _mesa_get_format_name(rb->Format),
-       x, y, w, h, *out_map, *out_stride);
+       x, y, w, h, map, stride);
 
    *out_map = map;
    *out_stride = stride;