From 9bd7ecc18be8a4c9f5bf283f6dc1f9b8f7ee2fed Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 15 Mar 2018 13:41:57 +0100 Subject: [PATCH] Added build date to version --- src/host.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/host.cpp b/src/host.cpp index 1db7fc9f1..b52bc0e92 100644 --- a/src/host.cpp +++ b/src/host.cpp @@ -283,11 +283,11 @@ void print_capabilities(struct module *root, bool use_vidcap) void print_version() { - printf("%s", PACKAGE_STRING); + printf("%s (", PACKAGE_STRING); #ifdef GIT_REV - printf(" (rev %s)", GIT_REV); + printf("rev %s, ", GIT_REV); #endif - printf("\n"); + printf("built " __DATE__ " " __TIME__ ")\n"); } void print_configuration()