1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: include string.h and fix a typo.
Author: David Frey <dfrey@debian.org>
Reviewed-By: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2017-09-22
--- a/sysvbanner.c
+++ b/sysvbanner.c
@@ -23,6 +23,7 @@
*/
#include <stdio.h>
+#include <string.h>
char *glyphs[] =
{
@@ -66,7 +67,7 @@
"# ## ## ## ## ## # # #",
" ##### # ####### ##### ###### ######## ##### ",
- "# # #*# ## # # # ## ########",
+ "# # ### ## # # # ## ########",
"# # # ## # # ## #### ## #",
"# # # ## # # # # # ## # ## #",
"####### # #### # # # ## # ## #",
|