summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-01-20 15:40:25 +0000
committerJim Meyering <jim@meyering.net>2003-01-20 15:40:25 +0000
commit3c7f4321a0aff450ba884fce79665706b679d2fa (patch)
treefb5d9b9a216a093a56c6f34223ae42cc48cfedee /src
parentae5862eecff4e87d996be9e91119a7cc3b4c6741 (diff)
downloadcoreutils-3c7f4321a0aff450ba884fce79665706b679d2fa.tar.xz
Remove some unnecessary parentheses.
Diffstat (limited to 'src')
-rw-r--r--src/remove.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/remove.c b/src/remove.c
index 2217c5fd2..d129ad6ba 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -157,18 +157,18 @@ DS *
ds_init ()
{
DS *ds = XMALLOC (struct dirstack_state, 1);
- obstack_init (&(ds->dir_stack));
- obstack_init (&(ds->len_stack));
- obstack_init (&(ds->Active_dir));
+ obstack_init (&ds->dir_stack);
+ obstack_init (&ds->len_stack);
+ obstack_init (&ds->Active_dir);
return ds;
}
void
ds_free (DS *ds)
{
- obstack_free (&(ds->dir_stack), NULL);
- obstack_free (&(ds->len_stack), NULL);
- obstack_free (&(ds->Active_dir), NULL);
+ obstack_free (&ds->dir_stack, NULL);
+ obstack_free (&ds->len_stack, NULL);
+ obstack_free (&ds->Active_dir, NULL);
}
static void