diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-08-24 18:07:24 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-08-24 18:07:24 +0200 |
commit | c100897c9d349d57927e005a9f1c15606268c728 (patch) | |
tree | 9af45aeeaf298b43151c5bac0b365bdf526d15f9 | |
parent | 726eee2a66babfa12fc698e82524e05082552276 (diff) | |
download | profani-tty-c100897c9d349d57927e005a9f1c15606268c728.tar.gz |
Hardcode James email adress in info message
Dont rely on PACKAGE_BUGREPORT being James' mail.
-rw-r--r-- | src/ui/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index bf97727b..e00c6658 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -413,7 +413,7 @@ cons_about(void) } } - win_println(console, THEME_DEFAULT, '-', "Copyright (C) 2012 - 2019 James Booth <%s>.", PACKAGE_BUGREPORT); + win_println(console, THEME_DEFAULT, '-', "Copyright (C) 2012 - 2019 James Booth <boothj5web@gmail.com>."); win_println(console, THEME_DEFAULT, '-', "Copyright (C) 2019 Michael Vetter <jubalh@iodoru.org>."); win_println(console, THEME_DEFAULT, '-', "License GPLv3+: GNU GPL version 3 or later <https://www.gnu.org/licenses/gpl.html>"); win_println(console, THEME_DEFAULT, '-', ""); |