From 3da890be258be46c39bac826389bc4648ef7da4a Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 3 Jul 2014 20:14:30 +0000 Subject: [PATCH] procps: fix build Signed-off-by: Hauke Mehrtens SVN-Revision: 41498 --- utils/procps/patches/030-fix-string-problems.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 utils/procps/patches/030-fix-string-problems.patch diff --git a/utils/procps/patches/030-fix-string-problems.patch b/utils/procps/patches/030-fix-string-problems.patch new file mode 100644 index 0000000000..de3756bb46 --- /dev/null +++ b/utils/procps/patches/030-fix-string-problems.patch @@ -0,0 +1,11 @@ +--- a/proc/sig.c ++++ b/proc/sig.c +@@ -214,7 +214,7 @@ void pretty_print_signals(void){ + while(++i <= number_of_signals){ + int n; + n = printf("%2d %s", i, signal_number_to_name(i)); +- if(i%7) printf(" \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" + n); ++ if(i%7) printf("%s", " \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" + n); + else printf("\n"); + } + if((i-1)%7) printf("\n"); -- 2.30.2