Skip to content

Commit

Permalink
reflog-walk: build fixes
Browse files Browse the repository at this point in the history
Dependency on reflog-walk.h was missing in the Makefile, and
reflog-walk.c did not even include it.

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Jan 21, 2007
1 parent 911cedc commit 53645a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -241,7 +241,7 @@ LIB_H = \
diff.h object.h pack.h pkt-line.h quote.h refs.h list-objects.h sideband.h \
run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
tree-walk.h log-tree.h dir.h path-list.h unpack-trees.h builtin.h \
utf8.h
utf8.h reflog-walk.h

DIFF_OBJS = \
diff.o diff-lib.o diffcore-break.o diffcore-order.o \
Expand Down
1 change: 1 addition & 0 deletions reflog-walk.c
Expand Up @@ -4,6 +4,7 @@
#include "diff.h"
#include "revision.h"
#include "path-list.h"
#include "reflog-walk.h"

struct complete_reflogs {
char *ref;
Expand Down

0 comments on commit 53645a3

Please sign in to comment.