From a3d5d4913d0b63406c50a4e393d1d3e87009a3dc Mon Sep 17 00:00:00 2001 From: Michihiro NAKAJIMA Date: Wed, 16 Dec 2009 07:50:38 -0500 Subject: [PATCH] Eliminate a paramter 'sym' of __link(), which is no longer needed. SVN-Revision: 1747 --- libarchive/archive_windows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libarchive/archive_windows.c b/libarchive/archive_windows.c index 241880aab..27e6a1837 100644 --- a/libarchive/archive_windows.c +++ b/libarchive/archive_windows.c @@ -269,7 +269,7 @@ la_CreateHardLinkW(wchar_t *linkname, wchar_t *target) /* Make a link to src called dst. */ static int -__link(const char *src, const char *dst, int sym) +__link(const char *src, const char *dst) { wchar_t *wsrc, *wdst; int res, retval; @@ -364,7 +364,7 @@ exit: int __la_link(const char *src, const char *dst) { - return __link (src, dst, 0); + return __link(src, dst); } int -- 2.47.3