NOTE: This patch has been committed.
src/ChangeLog addition:
2005-01-26 Ben Wing <ben(a)xemacs.org>
* free-hook.c (check_free):
Fix aliasing warning.
symlink source patch:
Diff command: bash -ci "cvs-diff --show-c-function -no-changelog "
Files affected: src/free-hook.c
Index: src/free-hook.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/free-hook.c,v
retrieving revision 1.12
diff -u -p -r1.12 free-hook.c
--- src/free-hook.c 2005/01/24 23:33:56 1.12
+++ src/free-hook.c 2005/01/26 10:35:10
@@ -131,7 +131,8 @@ check_free (void *ptr)
#endif
EMACS_INT present = (EMACS_INT) gethash (ptr, pointer_table,
- (const void **) &size);
+ (const void **)
+ (void *) &size);
if (!present)
{