]> git.rm.cloudns.org Git - xonotic/gmqcc.git/commitdiff
fix wrong --version string
authorWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 18 Dec 2012 14:44:26 +0000 (15:44 +0100)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 18 Dec 2012 14:44:26 +0000 (15:44 +0100)
main.c

diff --git a/main.c b/main.c
index fca93b2d87b27932258607e2848fbcac491916b2..00d3bc835390a6cfca82836e35118cd663c85f7d 100644 (file)
--- a/main.c
+++ b/main.c
@@ -44,8 +44,8 @@ static const char *app_name;
 
 static void version() {
     con_out("GMQCC %d.%d.%d Built %s %s\n",
-        GMQCC_VERSION_MINOR,
         GMQCC_VERSION_MAJOR,
+        GMQCC_VERSION_MINOR,
         GMQCC_VERSION_PATCH,
         __DATE__,
         __TIME__