]> git.eshelyaron.com Git - emacs.git/commitdiff
(XtApplyToWidgets): Cast args of lwlib_bcopy.
authorDave Love <fx@gnu.org>
Tue, 18 Jul 2000 12:41:55 +0000 (12:41 +0000)
committerDave Love <fx@gnu.org>
Tue, 18 Jul 2000 12:41:55 +0000 (12:41 +0000)
lwlib/ChangeLog
lwlib/lwlib-utils.c

index 2dd3655bebfaf6b24d58576de297bdabffab73c3..1dbd6c2b274494bc800f6cb92f1fb1eddc57cea3 100644 (file)
@@ -1,3 +1,7 @@
+2000-07-18  Dave Love  <fx@gnu.org>
+
+       * lwlib-utils.c (XtApplyToWidgets): Cast args of lwlib_bcopy.
+
 2000-06-23  Dave Love  <fx@gnu.org>
 
        * lwlib-Xlw.c (xlw_popup_menu): Cast arg of pop_up_menu.
index 75aad733a39c040e08ea7ea7162507fdfc986b4c..dcc0b42ca54665c62a5f5676d15dcf44d444fa31 100644 (file)
@@ -76,7 +76,8 @@ XtApplyToWidgets (w, proc, arg)
       int nkids = cw->composite.num_children;
       Widget *kids = (Widget *) malloc (sizeof (Widget) * nkids);
       int i;
-      lwlib_bcopy (cw->composite.children, kids, sizeof (Widget) * nkids);
+      lwlib_bcopy ((char *) cw->composite.children, (char *) kids,
+                  sizeof (Widget) * nkids);
       for (i = 0; i < nkids; i++)
 /* This prevent us from using gadgets, why is it here? */
 /*     if (XtIsWidget (kids [i])) */