From: Denis Vlasenko Date: Wed, 14 Mar 2007 22:06:57 +0000 (-0000) Subject: missed hunk of "stop using big static buffer for inode hash" X-Git-Tag: 1_5_1~55 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e1e93c1e1cf0ddbb1749176d5f1fc430c869c37a;p=oweals%2Fbusybox.git missed hunk of "stop using big static buffer for inode hash" --- 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);