summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/rule.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rule.c b/src/rule.c
index 2f03b985..0b785495 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -269,9 +269,6 @@ static void set_print_declaration(const struct set *set,
printf(" %s {%s", set->handle.set, opts->nl);
- if (!opts->nl[0])
- printf(" ");
-
printf("%s%stype %s", opts->tab, opts->tab, set->keytype->name);
if (set->flags & SET_F_MAP)
printf(" : %s", set->datatype->name);
@@ -352,7 +349,7 @@ void set_print_plain(const struct set *s)
{
struct print_fmt_options opts = {
.tab = "",
- .nl = "",
+ .nl = " ",
.table = s->handle.table,
.family = family2str(s->handle.family),
.stmt_separator = ";",