Mesa (7.10): st/wgl: Fix debug output format specifiers of stw_framebuffer_get_size().

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Jun 12 08:25:00 UTC 2011


Module: Mesa
Branch: 7.10
Commit: c78ac563f11272a20954c1ad0210df4cafcc12d4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c78ac563f11272a20954c1ad0210df4cafcc12d4

Author: José Fonseca <jfonseca at vmware.com>
Date:   Thu Apr  7 18:20:38 2011 +0100

st/wgl: Fix debug output format specifiers of stw_framebuffer_get_size().

---

 src/gallium/state_trackers/wgl/stw_framebuffer.c |    6 +++---
 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 733222a..670e542 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);




More information about the mesa-commit mailing list