summaryrefslogtreecommitdiff
path: root/src/remove.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-05-13 20:42:45 +0000
committerJim Meyering <jim@meyering.net>1999-05-13 20:42:45 +0000
commit59d16049d86cfd9475e26fe7c62a192dd922bff0 (patch)
tree591bcd22aec3afa27cd92489d8d5ae28bf2b027e /src/remove.c
parent5a83986f79542d32f1c263dd2466e17c4c13f3be (diff)
downloadcoreutils-59d16049d86cfd9475e26fe7c62a192dd922bff0.tar.xz
(pop_dir): Cast length to `int' to avoid a warning on
64-bit systems. From Ulrich Drepper.
Diffstat (limited to 'src/remove.c')
-rw-r--r--src/remove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remove.c b/src/remove.c
index 4c99d82b5..e827ac743 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -247,7 +247,7 @@ pop_dir (void)
/* Pop the length stack, too. */
assert (obstack_object_size (&len_stack) >= sizeof (size_t));
- obstack_blank (&len_stack, -(sizeof (size_t)));
+ obstack_blank (&len_stack, (int) -(sizeof (size_t)));
}
/* Copy the SRC_LEN bytes of data beginning at SRC into the DST_LEN-byte