From a63f858f5863845035c41a737c689fa7fbd48c28 Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Mon, 1 Jan 2024 17:11:51 +0000 Subject: [PATCH] config: add missing return to save a few cycles --- src/config/rcxml.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 9523e0e7..c649ad8b 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -688,6 +688,7 @@ entry(xmlNode *node, char *nodename, char *content) } if (in_libinput_category) { fill_libinput_category(nodename, content); + return; } if (in_regions) { fill_region(nodename, content);