]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
src: fix indentation/whitespace
authorThomas Haller <thaller@redhat.com>
Wed, 20 Sep 2023 14:26:02 +0000 (16:26 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 20 Sep 2023 16:10:51 +0000 (18:10 +0200)
Signed-off-by: Thomas Haller <thaller@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/meta.c

index d8fc5f585e7437588e01670fd825645d0d2f35c9..181e111cbbdc31883330b6f0aebf8e11018d5fb6 100644 (file)
@@ -968,8 +968,8 @@ struct stmt *meta_stmt_alloc(const struct location *loc, enum nft_meta_keys key,
        stmt->meta.key  = key;
        stmt->meta.expr = expr;
 
-        if (key < array_size(meta_templates))
-                stmt->meta.tmpl = &meta_templates[key];
+       if (key < array_size(meta_templates))
+               stmt->meta.tmpl = &meta_templates[key];
 
        return stmt;
 }