From 0d2997b36f76798472d717ffb1fdee95b3561507 Mon Sep 17 00:00:00 2001 From: ailin-nemui Date: Tue, 30 Jun 2020 09:29:50 +0200 Subject: [PATCH] make clang-format happy in keyboard.c --- src/fe-common/core/keyboard.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/fe-common/core/keyboard.c b/src/fe-common/core/keyboard.c index fa8ca076..e0e061dd 100644 --- a/src/fe-common/core/keyboard.c +++ b/src/fe-common/core/keyboard.c @@ -770,9 +770,8 @@ static void cmd_show_keys(const char *searchkey, int full) for (key = rec->keys; key != NULL; key = key->next) { KEY_REC *rec = key->data; - if ((len == 0 || - (full ? strncmp(rec->key, searchkey, len) == 0 : - strstr(rec->key, searchkey) != NULL)) && + if ((len == 0 || (full ? strncmp(rec->key, searchkey, len) == 0 : + strstr(rec->key, searchkey) != NULL)) && (!full || rec->key[len] == '\0')) { printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_BIND_LIST, rec->key, rec->info->id, rec->data == NULL ? "" : rec->data);