diff options
-rw-r--r-- | src/remove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remove.c b/src/remove.c index 36fe332f6..d9a87e1c2 100644 --- a/src/remove.c +++ b/src/remove.c @@ -235,7 +235,7 @@ pop_dir (Dirstack_state *ds) /* Pop the length stack, too. */ assert (obstack_object_size (&ds->len_stack) >= sizeof (size_t)); - obstack_blank (&ds->len_stack, (int) -(sizeof (size_t))); + obstack_blank (&ds->len_stack, -(int) sizeof (size_t)); } /* Copy the SRC_LEN bytes of data beginning at SRC into the DST_LEN-byte @@ -359,7 +359,7 @@ AD_stack_pop (Dirstack_state *ds) struct AD_ent *top = AD_stack_top (ds); if (top->unremovable) hash_free (top->unremovable); - obstack_blank (&ds->Active_dir, -sizeof (struct AD_ent)); + obstack_blank (&ds->Active_dir, -(int) sizeof (struct AD_ent)); pop_dir (ds); } |