summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-08-08 10:13:44 +0000
committerJim Meyering <jim@meyering.net>1999-08-08 10:13:44 +0000
commit08ae72e3a48fefc18c82326479f58f9ab00bf9ab (patch)
treeba844ede3cac957a58628ea291476566f82cfe3f /src
parentc127e628031b1fc89afa3f2ec8b1d02bdd76145c (diff)
downloadcoreutils-08ae72e3a48fefc18c82326479f58f9ab00bf9ab.tar.xz
(change_dir_group): Remove cast of savedir arg.
Diffstat (limited to 'src')
-rw-r--r--src/chgrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index ecf2e5d7f..f74ab381e 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -253,7 +253,7 @@ change_dir_group (const char *dir, gid_t group, const struct stat *statp)
int errors = 0;
errno = 0;
- name_space = savedir (dir, (unsigned int) statp->st_size);
+ name_space = savedir (dir, statp->st_size);
if (name_space == NULL)
{
if (errno)