diff --git a/NEWS b/NEWS index 0ff69ccb..b99ff05c 100644 --- 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 ---------------- diff --git a/proc/wchan.c b/proc/wchan.c index bbd32b8b..873a7062 100644 --- a/proc/wchan.c +++ b/proc/wchan.c @@ -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; }