summaryrefslogtreecommitdiffstats
path: root/Action.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-10-19 12:05:06 +0200
committercgzones <cgzones@googlemail.com>2020-10-20 21:44:25 +0200
commit8a08a3209c093f9b1137ec5879d3804026b0df6e (patch)
tree88b8ceda524a300c9df221ac58f18427b9f98ef7 /Action.c
parent803234a58d12b23cbc700a14b50e57764718f5a5 (diff)
IWYU update
- Add Settings forward declaration in Process.h - Add assert.h include in XUitls.c - Add conditional stdbool.h include in Object.h - Drop unneeded stddef.h include in Richstring.c - Drop unneeded unistd.h include in Process.h - Drop unneeded string.h include in linux/Platform.c - Use String_eq to avoid string.h include in Action.c - Improve script to run custom iwyu version
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 7443c842..3f5737fc 100644
--- a/Action.c
+++ b/Action.c
@@ -511,10 +511,10 @@ static Htop_Reaction actionHelp(State* st) {
mvaddstr(line + item, 9, helpLeft[item].info);
attrset(CRT_colors[HELP_BOLD]);
mvaddstr(line + item, 0, helpLeft[item].key);
- if (0 == strcmp(helpLeft[item].key, " H: ")) {
+ if (String_eq(helpLeft[item].key, " H: ")) {
attrset(CRT_colors[PROCESS_THREAD]);
mvaddstr(line + item, 32, "threads");
- } else if (0 == strcmp(helpLeft[item].key, " K: ")) {
+ } else if (String_eq(helpLeft[item].key, " K: ")) {
attrset(CRT_colors[PROCESS_THREAD]);
mvaddstr(line + item, 26, "threads");
}

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