aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-08-14 15:20:23 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2015-08-14 16:41:22 +0200
commit73ef8567f04c2dea8fbf83213b28e0cd1dff98f3 (patch)
tree31c8d10c19df8171cf67bb2f7dbd4a0f12f8b1a2
parentcmd: no need for pre function hook now (diff)
downloadcgit-73ef8567f04c2dea8fbf83213b28e0cd1dff98f3.tar.xz
cgit-73ef8567f04c2dea8fbf83213b28e0cd1dff98f3.zip
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>
Diffstat (limited to '')
-rw-r--r--cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd.c b/cmd.c
index 20c80b0..c991092 100644
--- a/cmd.c
+++ b/cmd.c
@@ -142,7 +142,7 @@ static void tree_fn(void)
}
#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)
{