Improved the call to f_name_cmp().

This commit is contained in:
Wayne Davison committed 2005-02-13 20:06:18 +00:00
1 parent 8824e2cee4
commit 122d1771db
1 file changed
+1 -1
+1 -1
View File
@@ -36,7 +36,7 @@ static int hlink_compare(struct file_struct **file1, struct file_struct **file2)
if (f1->F_INODE != f2->F_INODE) if (f1->F_INODE != f2->F_INODE)
return (int) (f1->F_INODE > f2->F_INODE ? 1 : -1); return (int) (f1->F_INODE > f2->F_INODE ? 1 : -1);
return f_name_cmp(*file1, *file2); return f_name_cmp(f1, f2);
} }
static struct file_struct **hlink_list; static struct file_struct **hlink_list;