*** empty log message ***

This commit is contained in:
Andrew Tridgell
1998-01-01 15:53:05 +00:00
parent 3fac9b6e93
commit c778aaa048

View File

@@ -80,7 +80,10 @@ int check_hard_link(struct file_struct *file)
while (low != high) {
int mid = (low+high)/2;
ret = hlink_compare(&hlink_list[mid],file);
if (ret == 0) break;
if (ret == 0) {
low = mid;
break;
}
if (ret > 0)
high=mid;
else