diff options
author | Jim Meyering <jim@meyering.net> | 2003-01-20 15:40:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-01-20 15:40:25 +0000 |
commit | 3c7f4321a0aff450ba884fce79665706b679d2fa (patch) | |
tree | fb5d9b9a216a093a56c6f34223ae42cc48cfedee | |
parent | ae5862eecff4e87d996be9e91119a7cc3b4c6741 (diff) | |
download | coreutils-3c7f4321a0aff450ba884fce79665706b679d2fa.tar.xz |
Remove some unnecessary parentheses.
-rw-r--r-- | src/remove.c | 12 |
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 |