From 40104588f38250afde9f71b6204d789039bbfe3e Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 22 Oct 2022 19:19:39 +0200 Subject: Reformat code base This includes: - Wrap function implementations - Pointer alignment for function signatures - Pointer alignment for variable declarations - Whitespace after keywords - Whitespace after comma - Whitespace around initializers - Whitespace around operators - Code indentation - Line break for single line statements - Misleading alignment --- Action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Action.c') diff --git a/Action.c b/Action.c index 00a69c4a..c86d0982 100644 --- a/Action.c +++ b/Action.c @@ -221,7 +221,7 @@ static Htop_Reaction actionToggleUserlandThreads(State* st) { return HTOP_RECALCULATE | HTOP_SAVE_SETTINGS | HTOP_KEEP_FOLLOWING; } -static Htop_Reaction actionToggleRunningInContainer(State* st){ +static Htop_Reaction actionToggleRunningInContainer(State* st) { st->settings->hideRunningInContainer = !st->settings->hideRunningInContainer; return HTOP_RECALCULATE | HTOP_SAVE_SETTINGS | HTOP_KEEP_FOLLOWING; } -- cgit v1.2.3