summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-04-07 18:20:38 +0100
committerJosé Fonseca <jose.r.fonseca@gmail.com>2011-06-12 09:15:42 +0100
commitc78ac563f11272a20954c1ad0210df4cafcc12d4 (patch)
tree6d07ec632e3dce1a08936e82c5ddf4887cc8111b
parentb6c601a5e8743b29b780b4de0d5738a5176a4092 (diff)
st/wgl: Fix debug output format specifiers of stw_framebuffer_get_size().
-rw-r--r--src/gallium/state_trackers/wgl/stw_framebuffer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/state_trackers/wgl/stw_framebuffer.c b/src/gallium/state_trackers/wgl/stw_framebuffer.c
index 733222aa21c..670e542cb4f 100644
--- a/src/gallium/state_trackers/wgl/stw_framebuffer.c
+++ b/src/gallium/state_trackers/wgl/stw_framebuffer.c
@@ -150,13 +150,13 @@ stw_framebuffer_get_size( struct stw_framebuffer *fb )
#if 0
debug_printf("\n");
- debug_printf("%s: client_position = (%i, %i)\n",
+ debug_printf("%s: client_position = (%li, %li)\n",
__FUNCTION__, client_pos.x, client_pos.y);
- debug_printf("%s: window_rect = (%i, %i) - (%i, %i)\n",
+ debug_printf("%s: window_rect = (%li, %li) - (%li, %li)\n",
__FUNCTION__,
window_rect.left, window_rect.top,
window_rect.right, window_rect.bottom);
- debug_printf("%s: client_rect = (%i, %i) - (%i, %i)\n",
+ debug_printf("%s: client_rect = (%li, %li) - (%li, %li)\n",
__FUNCTION__,
fb->client_rect.left, fb->client_rect.top,
fb->client_rect.right, fb->client_rect.bottom);