]> granicus.if.org Git - procps-ng/commitdiff
library: normalize stacks_extent struct layout, <PIDS>
authorJim Warner <james.warner@comcast.net>
Thu, 14 Sep 2017 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Sun, 1 Oct 2017 11:25:18 +0000 (22:25 +1100)
This patch just rearranges 1 item in the stacks_extent
struct to make it equivalent to all the other modules.

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

index e2ee4f0468b2bb62bcf1341e014beee9940d6fbf..96b948d6d34c0e429d7fff9511737bf942e69d0f 100644 (file)
@@ -54,9 +54,9 @@
 
 
 struct stacks_extent {
-    struct pids_stack **stacks;
     int ext_numstacks;
     struct stacks_extent *next;
+    struct pids_stack **stacks;
 };
 
 struct fetch_support {