diff options
author | Sergey Vlasov <vsu@altlinux.ru> | 2005-09-21 20:34:24 +0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-22 21:52:11 -0700 |
commit | 24451c31032d4ea3e7750b5f9c61e9c9f1657449 (patch) | |
tree | f8c31fd7561d6d79886d6db99f3308d822b7ec1e /fetch.c | |
parent | 2449696bcd8b458ae604c35898ecab7271b97b40 (diff) | |
download | git-24451c31032d4ea3e7750b5f9c61e9c9f1657449.tar.gz |
[PATCH] fetch.c: Clean up object flag definitions
Remove holes left after deleting flags, and use shifts to emphasize
that flags are single bits.
Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch.c')
-rw-r--r-- | fetch.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |