summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/rule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rule.c b/src/rule.c
index 9f27019f..0400dec4 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -237,11 +237,11 @@ void rule_print(const struct rule *rule)
const struct stmt *stmt;
list_for_each_entry(stmt, &rule->stmts, list) {
- printf(" ");
stmt->ops->print(stmt);
+ printf(" ");
}
if (handle_output > 0)
- printf(" # handle %" PRIu64, rule->handle.handle);
+ printf("# handle %" PRIu64, rule->handle.handle);
}
struct scope *scope_init(struct scope *scope, const struct scope *parent)