updated warning string to match patch in bug report 2868
authorBrian Paul <brian.paul@tungstengraphics.com>
Mon, 4 Apr 2005 16:06:16 +0000 (16:06 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Mon, 4 Apr 2005 16:06:16 +0000 (16:06 +0000)
src/mesa/drivers/x11/xm_api.c

index 55fc86748e44e5d843dc8e6ebe5f1939f1791788..873d196c940033db978ab4e2b6b90adc17f78a8b 100644 (file)
@@ -1740,14 +1740,16 @@ XMesaBuffer XMesaCreateWindowBuffer2( XMesaVisual v, XMesaWindow w,
 
 #ifdef XFree86Server
    if (GET_VISUAL_DEPTH(v) != ((XMesaDrawable)w)->depth) {
-      _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual and window! (%d != %d)\n", GET_VISUAL_DEPTH(v) , ((XMesaDrawable)w)->depth );
+      _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual (%d) and window (%d)!\n",
+                    GET_VISUAL_DEPTH(v), ((XMesaDrawable) w)->depth);
       return NULL;
    }
 #else
    XGetWindowAttributes( v->display, w, &attr );
 
    if (GET_VISUAL_DEPTH(v) != attr.depth) {
-      _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual and window! (%d != %d)\n", GET_VISUAL_DEPTH(v) , attr.depth );
+      _mesa_warning(NULL, "XMesaCreateWindowBuffer: depth mismatch between visual (%d) and window (%d)!\n",
+                    GET_VISUAL_DEPTH(v), attr.depth);
       return NULL;
    }
 #endif