Make fsck_dir void.
Signed-off-by: David Rientjes <rientjes@google.com> Signed-off-by: Junio C Hamano <junkio@cox.net>maint
parent
f7f0fbfcf4
commit
b5524c826d
|
@ -366,13 +366,13 @@ static void add_sha1_list(unsigned char *sha1, unsigned long ino)
|
||||||
sha1_list.nr = ++nr;
|
sha1_list.nr = ++nr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fsck_dir(int i, char *path)
|
static void fsck_dir(int i, char *path)
|
||||||
{
|
{
|
||||||
DIR *dir = opendir(path);
|
DIR *dir = opendir(path);
|
||||||
struct dirent *de;
|
struct dirent *de;
|
||||||
|
|
||||||
if (!dir)
|
if (!dir)
|
||||||
return 0;
|
return;
|
||||||
|
|
||||||
while ((de = readdir(dir)) != NULL) {
|
while ((de = readdir(dir)) != NULL) {
|
||||||
char name[100];
|
char name[100];
|
||||||
|
@ -398,7 +398,6 @@ static int fsck_dir(int i, char *path)
|
||||||
fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
|
fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
|
||||||
}
|
}
|
||||||
closedir(dir);
|
closedir(dir);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int default_refs = 0;
|
static int default_refs = 0;
|
||||||
|
|
Loading…
Reference in New Issue