From 3c7f4321a0aff450ba884fce79665706b679d2fa Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 20 Jan 2003 15:40:25 +0000 Subject: Remove some unnecessary parentheses. --- src/remove.c | 12 ++++++------ 1 file 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 -- cgit v1.2.3-70-g09d2