From 58892f8d0672f5b42be103ee7ffdaef15f19ac20 Mon Sep 17 00:00:00 2001 From: Joshua Yang Date: Wed, 17 Jul 2019 12:19:46 +0900 Subject: [PATCH] wiringPi: Add copyright in gpio help messages Signed-off-by: Joshua Yang --- gpio/gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpio/gpio.c b/gpio/gpio.c index 1985a17..94c1a0a 100755 --- a/gpio/gpio.c +++ b/gpio/gpio.c @@ -1005,7 +1005,7 @@ static void doVersion (char *argv []) wiringPiVersion (&vMaj, vMin) ; printf ("gpio version: %d.%s\n", vMaj, *vMin) ; - printf ("Copyright (c) 2012-2017 Gordon Henderson\n") ; + printf ("Copyright (c) 2012-2017 Gordon Henderson, 2017-2019 Hardkernel co., Ltd.\n") ; printf ("This is free software with ABSOLUTELY NO WARRANTY.\n") ; printf ("For details type: %s -warranty\n", argv [0]) ; printf ("\n") ; @@ -1083,7 +1083,7 @@ int main (int argc, char *argv []) if (strcasecmp (argv [1], "-warranty") == 0) { printf ("gpio version: %s\n", VERSION) ; - printf ("Copyright (c) 2012-2017 Gordon Henderson\n") ; + printf ("Copyright (c) 2012-2017 Gordon Henderson, 2017-2019 Hardkernel co., Ltd.\n") ; printf ("\n") ; printf (" This program is free software; you can redistribute it and/or modify\n") ; printf (" it under the terms of the GNU Leser General Public License as published\n") ;