summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-03-15 20:29:13 -0300
committerHisham Muhammad <hisham@gobolinux.org>2015-03-15 20:29:13 -0300
commite3fe3962cb493c0f07c3670ce60c008b8712dc8e (patch)
treea3e448f884716fc6655dc9958e3bd3b54882f7de /htop.c
parente7d6eb6a826f76d817d665cbbb41f9172949a539 (diff)
Move more Linux-specific code into Linux subdir.
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/htop.c b/htop.c
index ef3182de..b1b0d7f4 100644
--- a/htop.c
+++ b/htop.c
@@ -16,6 +16,7 @@ in the source distribution for its full text.
#include "ScreenManager.h"
#include "Settings.h"
#include "UsersTable.h"
+#include "Platform.h"
#include <getopt.h>
#include <locale.h>
@@ -101,7 +102,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
break;
case 's':
if (strcmp(optarg, "help") == 0) {
- for (int j = 1; j < LAST_PROCESSFIELD; j++) {
+ for (int j = 1; j < Platform_numberOfFields; j++) {
const char* name = Process_fields[j].name;
if (name) printf ("%s\n", name);
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy