diff options
author | Simon Frankenberger <simon@fraho.eu> | 2019-05-29 18:11:01 +0200 |
---|---|---|
committer | TBK <tbk@jjtc.eu> | 2019-05-30 13:18:55 +0200 |
commit | 9f72f605cf4187e49a9b311c82084faa2174e5cc (patch) | |
tree | 68f030ba665668fa77ab7951464797af7703807b /testing/lolcat/fix-url-and-version.patch | |
parent | 4f39179461ef66f69bd83fe0024e1cf27a566a1e (diff) | |
download | aports-9f72f605cf4187e49a9b311c82084faa2174e5cc.tar.bz2 aports-9f72f605cf4187e49a9b311c82084faa2174e5cc.tar.xz |
testing/lolcat: new aport
Closes: GH-8261
Diffstat (limited to 'testing/lolcat/fix-url-and-version.patch')
-rw-r--r-- | testing/lolcat/fix-url-and-version.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/lolcat/fix-url-and-version.patch b/testing/lolcat/fix-url-and-version.patch new file mode 100644 index 0000000000..1005925de9 --- /dev/null +++ b/testing/lolcat/fix-url-and-version.patch @@ -0,0 +1,24 @@ +--- old/lolcat.c ++++ new/lolcat.c +@@ -45,9 +45,9 @@ + " lolcat Copy standard input to standard output.\n" + " fortune | lolcat Display a rainbow cookie.\n" + "\n" +- "Report lolcat bugs to <http://www.github.org/jaseg/lolcat/issues>\n" +- "lolcat home page: <http://www.github.org/jaseg/lolcat/>\n" +- "Original idea: <http://www.github.org/busyloop/lolcat/>\n"; ++ "Report lolcat bugs to <http://www.github.com/jaseg/lolcat/issues>\n" ++ "lolcat home page: <http://www.github.com/jaseg/lolcat/>\n" ++ "Original idea: <http://www.github.com/busyloop/lolcat/>\n"; + + #define ARRAY_SIZE(foo) (sizeof(foo) / sizeof(foo[0])) + const unsigned char codes[] = { 39, 38, 44, 43, 49, 48, 84, 83, 119, 118, 154, 148, 184, 178, 214, 208, 209, 203, 204, 198, 199, 163, 164, 128, 129, 93, 99, 63, 69, 33 }; +@@ -72,7 +72,7 @@ + + static void version(void) + { +- wprintf(L"lolcat version 0.1, (c) 2014 jaseg\n"); ++ wprintf(L"lolcat version 1.0, (c) 2014 jaseg\n"); + exit(0); + } + |