st/wgl: Fix debug output format specifiers of stw_framebuffer_get_size().
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 7 Apr 2011 17:20:38 +0000 (18:20 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Tue, 12 Apr 2011 11:00:49 +0000 (12:00 +0100)
src/gallium/state_trackers/wgl/stw_framebuffer.c

index 733222aa21c828662b7b2058119f08bd578de241..670e542cb4fcf44997509f671648e2f0dc592382 100644 (file)
@@ -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);