changeset 81098:c7350a06ebe2

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:58:05 +0000
parents b4da44959c38
children f69206b84ee5
files oldXMenu/XMakeAssoc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/oldXMenu/XMakeAssoc.c	Tue May 29 23:19:43 2007 +0000
+++ b/oldXMenu/XMakeAssoc.c	Wed May 30 04:58:05 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;