From 9dd3ae00d2f9f2c24d27b76eaf9940666c3b6174 Mon Sep 17 00:00:00 2001 From: Zedhugh Chen Date: Mon, 13 Apr 2026 03:01:50 +0800 Subject: [PATCH] =?UTF-8?q?fix(core/rules):=20=E4=BF=AE=E5=A4=8D=20rules?= =?UTF-8?q?=5Fmove=20=E6=8E=A5=E5=8F=A3=E5=8F=82=E6=95=B0=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F=E4=B8=8E=E5=AE=9E=E7=8E=B0=E4=B8=8D=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/rules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/rules.h b/src/core/rules.h index c2b6b46..d26e4ae 100644 --- a/src/core/rules.h +++ b/src/core/rules.h @@ -15,5 +15,5 @@ typedef struct rules_t { size_t capacity; } rules_t; -bool rules_move(rules_t *dest, rules_t *src); +bool rules_move(rules_t *src, rules_t *dest); void rules_cleanup(rules_t *rules);