From: Jim Meyering Date: Sat, 6 Oct 2001 16:45:53 +0000 (+0000) Subject: (do_move): Reflect that hash_init now takes no arguments. X-Git-Tag: FILEUTILS-4_1_1~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dfa4910e2b826dbd7057325179f7c03c2c441cc;p=thirdparty%2Fcoreutils.git (do_move): Reflect that hash_init now takes no arguments. --- diff --git a/src/mv.c b/src/mv.c index c889a43560..284bc01422 100644 --- a/src/mv.c +++ b/src/mv.c @@ -177,7 +177,7 @@ do_move (const char *source, const char *dest, const struct cp_options *x) first = 0; /* Allocate space for remembering copied and created files. */ - hash_init (INITIAL_HASH_MODULE, INITIAL_ENTRY_TAB_SIZE); + hash_init (); } fail = copy (source, dest, 0, x, ©_into_self, &rename_succeeded);