Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
[PATCH] fetch.c: Clean up object flag definitions
[gitweb.git]
/
fetch.c
diff --git
a/fetch.c
b/fetch.c
index 21b373d198d7ecbed7d0052824ff130471a19fa2..b92ca8038ecec99e7ecaa0b1463cb0d1e8cb2796 100644
(file)
--- a/
fetch.c
+++ b/
fetch.c
@@
-54,9
+54,9
@@
static int process_tree(struct tree *tree)
return 0;
}
-#define COMPLETE
1U
-#define
TO_SCAN 4U
-#define
SEEN 16U
+#define COMPLETE
(1U << 0)
+#define
SEEN (1U << 1)
+#define
TO_SCAN (1U << 2)
static struct commit_list *complete = NULL;