summaryrefslogtreecommitdiff
path: root/src/cp-hash.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-10-24 07:36:53 +0000
committerJim Meyering <jim@meyering.net>2001-10-24 07:36:53 +0000
commitdf1b3c494895999122036a16b729a0b7f2a2123e (patch)
treed82b284061519c76a30fd1fd6065cd215150c65e /src/cp-hash.c
parent0b765fd5470844f9fca762da8b7044612d2e57db (diff)
downloadcoreutils-df1b3c494895999122036a16b729a0b7f2a2123e.tar.xz
(forget_all): Use hash_free, not hash_clear.
Diffstat (limited to 'src/cp-hash.c')
-rw-r--r--src/cp-hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cp-hash.c b/src/cp-hash.c
index 48d2841e1..86bc71859 100644
--- a/src/cp-hash.c
+++ b/src/cp-hash.c
@@ -155,5 +155,5 @@ hash_init (void)
void
forget_all (void)
{
- hash_clear (src_to_dest);
+ hash_free (src_to_dest);
}