From: Jim Warner Date: Thu, 14 Sep 2017 05:00:00 +0000 (-0500) Subject: library: normalize stacks_extent struct layout, X-Git-Tag: v4.0.0~701 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89775d54188ecc2c0ca048bc59e683b1ab678652;p=procps-ng library: normalize stacks_extent struct layout, 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 --- diff --git a/proc/pids.c b/proc/pids.c index e2ee4f04..96b948d6 100644 --- a/proc/pids.c +++ b/proc/pids.c @@ -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 {