This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository evisum.

View the commit online.

commit 6773c02a1f33b9cfd5c2b45294763065ddb3f1e8
Author: Alastair Poole <[email protected]>
AuthorDate: Mon Mar 30 05:05:52 2026 +0100

    process_list: fix the ordering.
---
 src/bin/evisum_config.c             | 12 ++++++------
 src/bin/ui/evisum_ui_process_list.h | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/bin/evisum_config.c b/src/bin/evisum_config.c
index baa503b..df5c7ce 100644
--- a/src/bin/evisum_config.c
+++ b/src/bin/evisum_config.c
@@ -18,12 +18,12 @@ enum {
     PROC_FIELD_WIDTH_PRI = 6,
     PROC_FIELD_WIDTH_NICE = 7,
     PROC_FIELD_WIDTH_FILES = 8,
-    PROC_FIELD_WIDTH_NET_IN = 9,
-    PROC_FIELD_WIDTH_NET_OUT = 10,
-    PROC_FIELD_WIDTH_DISK_READ = 11,
-    PROC_FIELD_WIDTH_DISK_WRITE = 12,
-    PROC_FIELD_WIDTH_SIZE = 13,
-    PROC_FIELD_WIDTH_VIRT = 14,
+    PROC_FIELD_WIDTH_SIZE = 9,
+    PROC_FIELD_WIDTH_VIRT = 10,
+    PROC_FIELD_WIDTH_DISK_WRITE = 11,
+    PROC_FIELD_WIDTH_DISK_READ = 12,
+    PROC_FIELD_WIDTH_NET_IN = 13,
+    PROC_FIELD_WIDTH_NET_OUT = 14,
     PROC_FIELD_WIDTH_RSS = 15,
     PROC_FIELD_WIDTH_SHARED = 16,
     PROC_FIELD_WIDTH_STATE = 17,
diff --git a/src/bin/ui/evisum_ui_process_list.h b/src/bin/ui/evisum_ui_process_list.h
index 3c60df5..9c12938 100644
--- a/src/bin/ui/evisum_ui_process_list.h
+++ b/src/bin/ui/evisum_ui_process_list.h
@@ -36,12 +36,12 @@ typedef enum {
     PROC_FIELD_PRI = 6,
     PROC_FIELD_NICE = 7,
     PROC_FIELD_FILES = 8,
-    PROC_FIELD_NET_IN = 9,
-    PROC_FIELD_NET_OUT = 10,
-    PROC_FIELD_DISK_READ = 11,
-    PROC_FIELD_DISK_WRITE = 12,
-    PROC_FIELD_SIZE = 13,
-    PROC_FIELD_VIRT = 14,
+    PROC_FIELD_SIZE = 9,
+    PROC_FIELD_VIRT = 10,
+    PROC_FIELD_DISK_WRITE = 11,
+    PROC_FIELD_DISK_READ = 12,
+    PROC_FIELD_NET_IN = 13,
+    PROC_FIELD_NET_OUT = 14,
     PROC_FIELD_RSS = 15,
     PROC_FIELD_SHARED = 16,
     PROC_FIELD_STATE = 17,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to