From c733660428c0a7c1d11f7bd21e23e1bb934d352e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Fri, 19 Jun 2009 08:37:18 -0400 Subject: [PATCH] Use pixman_version_string() instead of PIXMAN_VERSION_STRING Pointed out by Julien Cristau. --- hw/xfree86/common/xf86Init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 543d11c16..11f4cf1b1 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -218,7 +218,7 @@ xf86PrintBanner(void) #if defined(BUILDERSTRING) ErrorF("%s \n",BUILDERSTRING); #endif - ErrorF("Current version of pixman: %s\n", PIXMAN_VERSION_STRING); + ErrorF("Current version of pixman: %s\n", pixman_version_string()); ErrorF("\tBefore reporting problems, check "__VENDORDWEBSUPPORT__"\n" "\tto make sure that you have the latest version.\n"); }