diff options
| author | John Keeping <john@keeping.me.uk> | 2015-08-14 15:20:23 +0100 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-08-14 16:41:22 +0200 | 
| commit | 73ef8567f04c2dea8fbf83213b28e0cd1dff98f3 (patch) | |
| tree | 31c8d10c19df8171cf67bb2f7dbd4a0f12f8b1a2 | |
| parent | cmd: no need for pre function hook now (diff) | |
| download | cgit-73ef8567f04c2dea8fbf83213b28e0cd1dff98f3.tar.gz cgit-73ef8567f04c2dea8fbf83213b28e0cd1dff98f3.tar.bz2 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.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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)  { | 
