summaryrefslogtreecommitdiffstats
path: root/Action.c
diff options
context:
space:
mode:
authorRichard <rsaxvc@rsaxvc.net>2017-07-22 21:41:19 -0500
committerRichard <rsaxvc@rsaxvc.net>2017-07-22 22:34:30 -0500
commitd5faf643742ae047e327d41910232791bc7bca41 (patch)
tree0b678ca7858690e3898bf3b3268d175719e3aa3b /Action.c
parent18b3e5d255b580ea31e62889c4c1903d466ab0e6 (diff)
Mark some things as const
Several string pointer arrays pointed to const strings but were not const themselves. A few various structures and arrays were also marked const.
Diffstat (limited to 'Action.c')
-rw-r--r--Action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Action.c b/Action.c
index f5d7de43..391716a5 100644
--- a/Action.c
+++ b/Action.c
@@ -381,7 +381,7 @@ static Htop_Reaction actionRedraw() {
return HTOP_REFRESH | HTOP_REDRAW_BAR;
}
-static struct { const char* key; const char* info; } helpLeft[] = {
+static const struct { const char* key; const char* info; } helpLeft[] = {
{ .key = " Arrows: ", .info = "scroll process list" },
{ .key = " Digits: ", .info = "incremental PID search" },
{ .key = " F3 /: ", .info = "incremental name search" },
@@ -399,7 +399,7 @@ static struct { const char* key; const char* info; } helpLeft[] = {
{ .key = NULL, .info = NULL }
};
-static struct { const char* key; const char* info; } helpRight[] = {
+static const struct { const char* key; const char* info; } helpRight[] = {
{ .key = " Space: ", .info = "tag process" },
{ .key = " c: ", .info = "tag process and its children" },
{ .key = " U: ", .info = "untag all processes" },

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