* image.c (imagemagick_image_p): Replace bcopy by memcpy.
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 4 Sep 2010 08:23:09 +0000 (10:23 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 4 Sep 2010 08:23:09 +0000 (10:23 +0200)
src/ChangeLog
src/image.c

index c70db2a..ce5e139 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-04  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * image.c (imagemagick_image_p): Replace bcopy by memcpy.
+
 2010-09-02  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
index ae4bf2f..e6e1605 100644 (file)
@@ -7413,7 +7413,7 @@ static int
 imagemagick_image_p (Lisp_Object object)
 {
   struct image_keyword fmt[IMAGEMAGICK_LAST];
-  bcopy (imagemagick_format, fmt, sizeof fmt);
+  memcpy (fmt, imagemagick_format, sizeof fmt);
 
   if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
     return 0;