1
0
Fork 0

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>
Dieser Commit ist enthalten in:
John Keeping 2015-08-14 15:20:23 +01:00 committet von Jason A. Donenfeld
Ursprung 03de473354
Commit 73ef8567f0
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

2
cmd.c
Datei anzeigen

@ -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)
{