From: Jim Meyering Date: Sat, 6 Oct 2001 16:46:06 +0000 (+0000) Subject: (main): Reflect that hash_init now takes no arguments. X-Git-Tag: FILEUTILS-4_1_1~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1b81c9b749f62125577d5fbebd769e149bfcc62;p=thirdparty%2Fcoreutils.git (main): Reflect that hash_init now takes no arguments. --- diff --git a/src/cp.c b/src/cp.c index faede5472d..04121c8bee 100644 --- a/src/cp.c +++ b/src/cp.c @@ -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 7bdd1abb22..49b55a0369 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) {