]> granicus.if.org Git - procps-ng/commitdiff
misc: remove some trailing whitespace newly introduced
authorJim Warner <james.warner@comcast.net>
Thu, 24 Nov 2016 18:12:12 +0000 (12:12 -0600)
committerCraig Small <csmall@enc.com.au>
Wed, 7 Dec 2016 10:50:59 +0000 (21:50 +1100)
The commit (merge) referenced below added some useless
trailing whitespace, and this patch will correct such.

[ this also updates the NEWS file for the buglet fix ]

Gosh, if folks cannot coax their editors into avoiding
such crap they should remove the '.sample' suffix from
their '.git/hooks/pre-commit.sample' file. Thereafter,
git itself will reject changes with whitespace errors.

Reference(s):
commit cc1f49aebacbe0a9b3f12744fd596669ffdb45aa

Signed-off-by: Jim Warner <james.warner@comcast.net>
NEWS
proc/wchan.c

diff --git a/NEWS b/NEWS
index 0ff69ccb6ebee96f03d9b646b83d5bdc58e1c8dd..b99ff05c97c9beba3928130dda74beda15a9879f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ procps-ng-NEXT
   * library: dont use SIGPWR on FreeBSD                    Debian #832148
   * pmap: fix duplicate output line under '-x' option      Redhat #1374061
   * top: eliminated minor libnuma memory leak
+  * library: don't strip off wchan prefixes (ps & top)     Redhat #1322111
 
 procps-ng-3.3.12
 ----------------
index bbd32b8b502ed8a12059b8e111678e06e4be1f4c..873a70629bd9052e7c478db3430f74505d104290 100644 (file)
@@ -47,6 +47,6 @@ const char * lookup_wchan (int pid) {
    // lame ppc64 has a '.' in front of every name
    if (*ret=='.') ret++;
    while(*ret=='_') ret++;
-   
+
    return ret;
 }