From: Johan Malm Date: Mon, 1 Jan 2024 17:11:51 +0000 (+0000) Subject: config: add missing return to save a few cycles X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=a63f858f5863845035c41a737c689fa7fbd48c28;p=proto%2Flabwc.git config: add missing return to save a few cycles --- 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);