From: Jim Meyering Date: Mon, 20 Jan 2003 15:40:25 +0000 (+0000) Subject: Remove some unnecessary parentheses. X-Git-Tag: v4.5.5~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c7f4321a0aff450ba884fce79665706b679d2fa;p=thirdparty%2Fcoreutils.git Remove some unnecessary parentheses. --- diff --git a/src/remove.c b/src/remove.c index 2217c5fd20..d129ad6ba0 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