From d211be1982739669fe50fb0f2a75dcf058183006 Mon Sep 17 00:00:00 2001 From: Moritz Martinius Date: Thu, 1 Feb 2024 18:56:27 +0100 Subject: [PATCH] Fix constant name for version --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f3519b7..187a582 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,6 @@ -#include +#include -int main (int, char**) { - spdlog::info("shmem version {}", PROJECT_VERSION); +int main(int, char**) { + spdlog::info("shmem version {}", PROJ_VERSION); return 0; } \ No newline at end of file