Commit 122d1771 authored by Wayne Davison's avatar Wayne Davison

Improved the call to f_name_cmp().

parent 8824e2ce
......@@ -36,7 +36,7 @@ static int hlink_compare(struct file_struct **file1, struct file_struct **file2)
if (f1->F_INODE != f2->F_INODE)
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment