diff options
author | Kevin E Martin <kem@kem.org> | 2004-08-16 02:07:53 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2004-08-16 02:07:53 +0000 |
commit | 9aa6beb6b7e6272b05a03e0a4fd34eb8ad21bf47 (patch) | |
tree | 1d3efc7603f476814d2fa6d83ae9ce1be692f854 /hw/xfree86/common/xf86Init.c | |
parent | 9da0c214ab5f4ee9c1610b4888f5c7c0dd2bcacc (diff) |
Fix banner to print out proper version information.
Diffstat (limited to 'hw/xfree86/common/xf86Init.c')
-rw-r--r-- | hw/xfree86/common/xf86Init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 9f90c08d8..07e3cc3af 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -1764,6 +1764,10 @@ xf86PrintBanner() "latest version in the " XVENDORNAME " \"monolithic tree\" CVS\n" "repository hosted at http://www.freedesktop.org/Software/xorg/"); #endif + ErrorF("\nX Window System Version %d.%d.%d", + XORG_VERSION_MAJOR, + XORG_VERSION_MINOR, + XORG_VERSION_PATCH); #if XORG_VERSION_SNAP > 0 ErrorF(".%d", XORG_VERSION_SNAP); #endif |