From: Bartosz Golaszewski Date: Thu, 12 Apr 2018 15:15:44 +0000 (+0200) Subject: tools: fix the copyright notice X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a178da8c95f2fda20278763e9bfea679718eec3e;p=qemu-gpiodev%2Flibgpiod.git tools: fix the copyright notice The copyright notice displayed together with the package version using the --version argument got accidentally modified by commit 0704bcdbbf56 ("all: update the copyright notice") and is now incorrect. Fix it. Fixes: 0704bcdbbf56 ("all: update the copyright notice") Signed-off-by: Bartosz Golaszewski --- diff --git a/src/tools/tools-common.c b/src/tools/tools-common.c index 2fe0c52..4fbc075 100644 --- a/src/tools/tools-common.c +++ b/src/tools/tools-common.c @@ -52,7 +52,7 @@ void print_version(void) { printf("%s (libgpiod) %s\n", program_invocation_short_name, gpiod_version_string()); - printf("Copyright (C) 2017-2018-2018 Bartosz Golaszewski\n"); + printf("Copyright (C) 2017-2018 Bartosz Golaszewski\n"); printf("License: LGPLv2.1\n"); printf("This is free software: you are free to change and redistribute it.\n"); printf("There is NO WARRANTY, to the extent permitted by law.\n");