From 3dfa4910e2b826dbd7057325179f7c03c2c441cc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 6 Oct 2001 16:45:53 +0000 Subject: [PATCH] (do_move): Reflect that hash_init now takes no arguments. --- src/mv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mv.c b/src/mv.c index c889a4356..284bc0142 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);