1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Remove some unnecessary parentheses.

This commit is contained in:
Jim Meyering
2003-01-20 15:40:25 +00:00
parent ae5862eecf
commit 3c7f4321a0

View File

@@ -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