mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-06-19 15:58:26 +02:00
Fix code to handle printing 7.0 release candidates properly.
This commit is contained in:
parent
d5d669b04e
commit
2654f88cee
1 changed files with 4 additions and 0 deletions
|
|
@ -1804,9 +1804,13 @@ xf86PrintBanner()
|
|||
#endif
|
||||
|
||||
#if XORG_VERSION_SNAP >= 900
|
||||
#if XORG_VERSION_MINOR >= 99
|
||||
ErrorF(" (%d.0.0 RC %d)", XORG_VERSION_MAJOR+1, XORG_VERSION_SNAP - 900);
|
||||
#else
|
||||
ErrorF(" (%d.%d.0 RC %d)", XORG_VERSION_MAJOR, XORG_VERSION_MINOR + 1,
|
||||
XORG_VERSION_SNAP - 900);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef XORG_CUSTOM_VERSION
|
||||
ErrorF(" (%s)", XORG_CUSTOM_VERSION);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue