diff options
-rw-r--r-- | src/cp.c | 2 | ||||
-rw-r--r-- | src/install.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -935,7 +935,7 @@ Use `--parents' for the old meaning, and `--no-dereference' for the new one.")); /* Allocate space for remembering copied and created files. */ - hash_init (INITIAL_HASH_MODULE, INITIAL_ENTRY_TAB_SIZE); + hash_init (); exit_status |= do_copy (argc - optind, argv + optind, target_directory, &x); diff --git a/src/install.c b/src/install.c index 7bdd1abb2..49b55a036 100644 --- a/src/install.c +++ b/src/install.c @@ -316,7 +316,7 @@ main (int argc, char **argv) { /* FIXME: it's a little gross that this initialization is required by copy.c::copy. */ - hash_init (INITIAL_HASH_MODULE, INITIAL_ENTRY_TAB_SIZE); + hash_init (); if (n_files == 2) { |