From ca2cd27d3cae75065d931b67f54db6b13ed7236d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 8 Aug 1999 10:14:45 +0000 Subject: [PATCH] (copy_dir): Remove cast of savedir arg. --- src/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/copy.c b/src/copy.c index f1242efeae..d40dc1901c 100644 --- a/src/copy.c +++ b/src/copy.c @@ -115,7 +115,7 @@ copy_dir (const char *src_path_in, const char *dst_path_in, int new_dst, int ret = 0; errno = 0; - name_space = savedir (src_path_in, (unsigned int) src_sb->st_size); + name_space = savedir (src_path_in, src_sb->st_size); if (name_space == 0) { if (errno) -- 2.47.3