[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>
This commit is contained in:
Sergey Vlasov 2005-09-21 20:34:24 +04:00 коммит произвёл Junio C Hamano
Родитель 2449696bcd
Коммит 24451c3103
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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;