summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@redhat.com>2009-06-19 08:37:18 -0400
committerSøren Sandmann Pedersen <sandmann@redhat.com>2009-06-19 08:37:54 -0400
commitc733660428c0a7c1d11f7bd21e23e1bb934d352e (patch)
treed145edf456e42f8ca4199888ba60545d6bec3870
parentaef6b904ebf0d7de6259058606c7c04ea177bda3 (diff)
Use pixman_version_string() instead of PIXMAN_VERSION_STRING
Pointed out by Julien Cristau.
-rw-r--r--hw/xfree86/common/xf86Init.c2
1 files changed, 1 insertions, 1 deletions
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");
}