summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-28 08:17:39 +0000
committerJim Meyering <jim@meyering.net>2003-09-28 08:17:39 +0000
commit819f39dc9b083c6bf5115cddb364df674739686f (patch)
treeb1b36456685cd8c142a754c3ec6ee526b4cd1872
parent401673f8dde64618fdca63a0d3f8ed3c7bfe6d9c (diff)
downloadcoreutils-819f39dc9b083c6bf5115cddb364df674739686f.tar.xz
Remove unnecessary cast of alloca, since now it's guaranteed to be (void *).
-rw-r--r--src/copy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/copy.c b/src/copy.c
index 624e7c68d..283b6952d 100644
--- a/src/copy.c
+++ b/src/copy.c
@@ -310,7 +310,7 @@ copy_reg (const char *src_path, const char *dst_path,
/* Make a buffer with space for a sentinel at the end. */
- buf = (char *) alloca (buf_size + sizeof (int));
+ buf = alloca (buf_size + sizeof (int));
for (;;)
{
@@ -1036,7 +1036,7 @@ copy_internal (const char *src_path, const char *dst_path,
return 1;
}
- dst_backup = (char *) alloca (strlen (tmp_backup) + 1);
+ dst_backup = alloca (strlen (tmp_backup) + 1);
strcpy (dst_backup, tmp_backup);
free (tmp_backup);
if (rename (dst_path, dst_backup))
@@ -1306,7 +1306,7 @@ copy_internal (const char *src_path, const char *dst_path,
/* Insert the current directory in the list of parents. */
- dir = (struct dir_list *) alloca (sizeof (struct dir_list));
+ dir = alloca (sizeof (struct dir_list));
dir->parent = ancestors;
dir->ino = src_sb.st_ino;
dir->dev = src_sb.st_dev;
@@ -1459,7 +1459,7 @@ copy_internal (const char *src_path, const char *dst_path,
{
/* See if the destination is already the desired symlink. */
size_t src_link_len = strlen (src_link_val);
- char *dest_link_val = (char *) alloca (src_link_len + 1);
+ char *dest_link_val = alloca (src_link_len + 1);
int dest_link_len = readlink (dst_path, dest_link_val,
src_link_len + 1);
if ((size_t) dest_link_len == src_link_len