summaryrefslogtreecommitdiffstats
path: root/InfoScreen.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-12-20 16:58:37 +0100
committerChristian Göttsche <cgzones@googlemail.com>2020-12-20 16:58:37 +0100
commit7e7a53c415b82cceee6173922987b772b1d51c10 (patch)
tree41623531c123c352d207ac0b0d0727e357054bcc /InfoScreen.c
parent6b100b0cf47dda06d1dc1d38211d910488b5d803 (diff)
Mark event arrays const
Diffstat (limited to 'InfoScreen.c')
-rw-r--r--InfoScreen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/InfoScreen.c b/InfoScreen.c
index ceb29f74..515d64f0 100644
--- a/InfoScreen.c
+++ b/InfoScreen.c
@@ -19,7 +19,7 @@ static const char* const InfoScreenFunctions[] = {"Search ", "Filter ", "Refresh
static const char* const InfoScreenKeys[] = {"F3", "F4", "F5", "Esc"};
-static int InfoScreenEvents[] = {KEY_F(3), KEY_F(4), KEY_F(5), 27};
+static const int InfoScreenEvents[] = {KEY_F(3), KEY_F(4), KEY_F(5), 27};
InfoScreen* InfoScreen_init(InfoScreen* this, const Process* process, FunctionBar* bar, int height, const char* panelHeader) {
this->process = process;

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