summaryrefslogtreecommitdiff
path: root/oldXMenu
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-05-30 04:57:13 +0000
committerGlenn Morris <rgm@gnu.org>2007-05-30 04:57:13 +0000
commitd29ffc8c05c16f55314ce8ae2d6b33c35bad25ce (patch)
treeaa5f5de4564821e2afa721903bea8fe4e4177f32 /oldXMenu
parent8c5ad636f9bcc75aaabbc6211ec516df7a984f4a (diff)
downloademacs-d29ffc8c05c16f55314ce8ae2d6b33c35bad25ce.tar.gz
Ulrich Mueller <ulm at gentoo.org> (tiny change)
(XMakeAssoc): Use malloc rather than xmalloc.
Diffstat (limited to 'oldXMenu')
-rw-r--r--oldXMenu/XMakeAssoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c
index d443084ac13..cf039c8f3c1 100644
--- a/oldXMenu/XMakeAssoc.c
+++ b/oldXMenu/XMakeAssoc.c
@@ -81,7 +81,7 @@ XMakeAssoc(dpy, table, x_id, data)
/* 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;