Displaying 1 result from an estimated 1 matches for "c_unix".
Did you mean:
ch_unix
2002 Jan 13
1
rsynd-2.5.1 / hlink.c patches
...ot
allowing the compile to complete.
When the function definiton of the hlink_compare() is corrected to have
the const qualifiers, the cast inside the qsort() function call is no
longer needed.
-John
wb8tyw@qsl.network
Personal Opinion Only
EAGLE> gdiff -u ref_src:hlink.c lcl_src:hlink.c_unix
--- ref_src:hlink.c Sat Jan 5 13:27:03 2002
+++ lcl_src:hlink.c_unix Sat Jan 12 19:28:00 2002
@@ -23,7 +23,8 @@
extern int verbose;
#if SUPPORT_HARD_LINKS
-static int hlink_compare(struct file_struct *f1,struct file_struct *f2)
+static int hlink_compare
+ (const struct file_struc...