summaryrefslogtreecommitdiffstats
path: root/src/rule.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rule.c')
-rw-r--r--src/rule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rule.c b/src/rule.c
index 43a3e117..a7bc6f44 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -418,7 +418,7 @@ static void chain_print(const struct chain *chain)
printf("\tchain %s {\n", chain->handle.chain);
if (chain->flags & CHAIN_F_BASECHAIN) {
- printf("\t\t type %s hook %s priority %u;\n", chain->type,
+ printf("\t\t type %s hook %s priority %d;\n", chain->type,
hooknum2str(chain->handle.family, chain->hooknum),
chain->priority);
}
@@ -439,7 +439,7 @@ void chain_print_plain(const struct chain *chain)
chain->handle.table, chain->handle.chain);
if (chain->flags & CHAIN_F_BASECHAIN) {
- printf(" { type %s hook %s priority %u; }", chain->type,
+ printf(" { type %s hook %s priority %d; }", chain->type,
hooknum2str(chain->handle.family, chain->hooknum),
chain->priority);
}