From f8a112017ec7f5205d0eb72665c16de3f7476fe4 Mon Sep 17 00:00:00 2001 From: vda Date: Wed, 14 Mar 2007 22:06:57 +0000 Subject: missed hunk of "stop using big static buffer for inode hash" git-svn-id: svn://busybox.net/trunk/busybox@18110 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils/du.c b/coreutils/du.c index eceb646d1..e5fe5ffe2 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -101,7 +101,7 @@ static long du(const char * const filename) if (statbuf.st_nlink > count_hardlinks) { /* Add files/directories with links only once */ - if (is_in_ino_dev_hashtable(&statbuf, NULL)) { + if (is_in_ino_dev_hashtable(&statbuf)) { return 0; } add_to_ino_dev_hashtable(&statbuf, NULL); -- cgit v1.2.3-55-g6feb