1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-10-28 12:59:41 +01:00

A stylistic fix to read-cache.c

Changes "if (pointer == 0)" to "if (!pointer)" to match the rest
of the code, noticed by Petr Baudis.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2005-05-08 14:02:19 -07:00
parent ddd5d0568d
commit aa575f815e

View file

@ -152,7 +152,7 @@ static int check_file_directory_conflict(const struct cache_entry *ce,
cp = pathbuf;
while (1) {
char *ep = strchr(cp, '/');
if (ep == 0)
if (!ep)
break;
*ep = 0; /* first cut it at slash */
pos = cache_name_pos(pathbuf,