diff options
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index edc56466..423b576f 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -1050,7 +1050,7 @@ static int handler_compare(const void *_a, const void *_b) { return strcasecmp(a->command, b->command); } -struct cmd_handler *find_handler(char *line) { +static struct cmd_handler *find_handler(char *line) { struct cmd_handler d = { .command=line }; struct cmd_handler *res = bsearch(&d, handlers, sizeof(handlers) / sizeof(struct cmd_handler), |