# HG changeset patch # User Glenn Morris # Date 1180501085 0 # Node ID c7350a06ebe2ffeed77a1ab9d4abf11c7fe4e7cf # Parent b4da44959c389e83a703b5703f93c83d2d64913e Ulrich Mueller (tiny change) (XMakeAssoc): Use malloc rather than xmalloc. diff -r b4da44959c38 -r c7350a06ebe2 oldXMenu/XMakeAssoc.c --- 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;