tools: tweak the displayed version format
authorBartosz Golaszewski <bartekgola@gmail.com>
Tue, 24 Jul 2018 13:09:35 +0000 (15:09 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Tue, 24 Jul 2018 13:13:28 +0000 (15:13 +0200)
Prepend the version string with a 'v' to stay consistent with git
tags we're using.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
src/tools/tools-common.c

index 4fbc075c4a8ad64a54ffa37c4f5e87e30417c248..4a7a7764e932a58fb2d7012ef90b0ba598b86e3c 100644 (file)
@@ -50,7 +50,7 @@ void die_perror(const char *fmt, ...)
 
 void print_version(void)
 {
-       printf("%s (libgpiod) %s\n",
+       printf("%s (libgpiod) v%s\n",
               program_invocation_short_name, gpiod_version_string());
        printf("Copyright (C) 2017-2018 Bartosz Golaszewski\n");
        printf("License: LGPLv2.1\n");