From a178da8c95f2fda20278763e9bfea679718eec3e Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Thu, 12 Apr 2018 17:15:44 +0200 Subject: [PATCH] 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 --- src/tools/tools-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.30.2