changeset 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 7abeffb8f06b
children 660e3e2cc86d
files oldXMenu/XMakeAssoc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;