diff oldXMenu/XMakeAssoc.c @ 77837:77b2ab19bece

Ulrich Mueller <ulm at gentoo.org> (tiny change) (XMakeAssoc): Use malloc rather than xmalloc.
author Glenn Morris <rgm@gnu.org>
date Wed, 30 May 2007 04:57:13 +0000
parents fec5e03aaf59
children 648e6c714c7d 5cc91198ffb2 a63dbe9548aa
line wrap: on
line diff
--- a/oldXMenu/XMakeAssoc.c	Tue May 29 19:43:27 2007 +0000
+++ b/oldXMenu/XMakeAssoc.c	Wed May 30 04:57:13 2007 +0000
@@ -81,7 +81,7 @@
 	/* If we are here then the new entry should be inserted just */
 	/* before the current value of "Entry". */
 	/* Create a new XAssoc and load it with new provided data. */
-	new_entry = (XAssoc *) xmalloc(sizeof(XAssoc));
+	new_entry = (XAssoc *) malloc(sizeof(XAssoc));
 	new_entry->display = dpy;
 	new_entry->x_id = x_id;
 	new_entry->data = data;