diff options
author | Jim Meyering <jim@meyering.net> | 1999-08-08 10:15:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-08-08 10:15:06 +0000 |
commit | 8fd9cfdd3c6f9c04f8aa93be91c527d80407b1a1 (patch) | |
tree | 52c36f72945b592a8d282db6328656ac3ea8f243 /src | |
parent | ca2cd27d3cae75065d931b67f54db6b13ed7236d (diff) | |
download | coreutils-8fd9cfdd3c6f9c04f8aa93be91c527d80407b1a1.tar.xz |
(count_entry): Remove cast of savedir arg.
Diffstat (limited to 'src')
-rw-r--r-- | src/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -512,7 +512,7 @@ count_entry (const char *ent, int top, dev_t last_dev, int depth) } errno = 0; - name_space = savedir (".", (unsigned int) stat_buf.st_size); + name_space = savedir (".", stat_buf.st_size); if (name_space == NULL) { if (errno) |