From 51eddb6f2450d5f2925ea70469f886694d1f2e2a Mon Sep 17 00:00:00 2001
From: Andreas Gattringer <andreas.gattringer@univie.ac.at>
Date: Mon, 31 Oct 2022 12:47:04 +0100
Subject: [PATCH] fixed how the CATS version information constructed

---
 src/cats/misc/misc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/cats/misc/misc.c b/src/cats/misc/misc.c
index 5de3a37..3465aa5 100644
--- a/src/cats/misc/misc.c
+++ b/src/cats/misc/misc.c
@@ -29,7 +29,8 @@
 
 const char *cats_version(void)
 {
-        return xstr(CATS(CATSVERSION));
+#define CATS_VERSION "CATS version " VERSION
+        return CATS_VERSION;
 }
 
 
-- 
GitLab