diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2021-12-16 15:40:50 +0100 |
---|---|---|
committer | cgzones <cgzones@googlemail.com> | 2021-12-17 14:45:15 +0100 |
commit | 6e9a5e9e49939daa8097a72dc9210b5e964af4b6 (patch) | |
tree | c4d8855b1a564ab756a74bbb7da8268d073384b6 /netbsd | |
parent | 14f428a1721a7b179be7b650135ec591c215564e (diff) |
Mark ScreenDefaults const
Diffstat (limited to 'netbsd')
-rw-r--r-- | netbsd/Platform.c | 2 | ||||
-rw-r--r-- | netbsd/Platform.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/netbsd/Platform.c b/netbsd/Platform.c index d95be9d9..f442fe78 100644 --- a/netbsd/Platform.c +++ b/netbsd/Platform.c @@ -66,7 +66,7 @@ in the source distribution for its full text. #define prop_number_signed_value prop_number_integer_value #endif -ScreenDefaults Platform_defaultScreens[] = { +const ScreenDefaults Platform_defaultScreens[] = { { .name = "Main", .columns = "PID USER PRIORITY NICE M_VIRT M_RESIDENT STATE PERCENT_CPU PERCENT_MEM TIME COMM", diff --git a/netbsd/Platform.h b/netbsd/Platform.h index 428eb15a..3ad51e28 100644 --- a/netbsd/Platform.h +++ b/netbsd/Platform.h @@ -34,7 +34,7 @@ in the source distribution for its full text. #define PLATFORM_LONG_OPTIONS \ // End of list -extern ScreenDefaults Platform_defaultScreens[]; +extern const ScreenDefaults Platform_defaultScreens[]; extern const unsigned int Platform_numberOfDefaultScreens; |