cgit

commit 73ef8567f04c2dea8fbf83213b28e0cd1dff98f3

Author: John Keeping <john@keeping.me.uk>

cmd: fix command definition

The previous commit removed the "pre" field from "struct cgit_cmd" but
forgot to update this macro.

Signed-off-by: John Keeping <john@keeping.me.uk>
Reviewed-by: Christian Hesse <mail@eworm.de>

 cmd.c | 2 +-


diff --git a/cmd.c b/cmd.c
index 20c80b0d6d5f2b3b531f8b70353f0293fa16006d..c9910928a6878daef6165e258ae4ec2c6b50c20f 100644
--- a/cmd.c
+++ b/cmd.c
@@ -142,7 +142,7 @@ 	cgit_print_tree(ctx.qry.sha1, ctx.qry.path);
 }
 
 #define def_cmd(name, want_repo, want_vpath, is_clone) \
-	{#name, name##_fn, NULL, want_repo, want_vpath, is_clone}
+	{#name, name##_fn, want_repo, want_vpath, is_clone}
 
 struct cgit_cmd *cgit_get_cmd(void)
 {