summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-02-11 23:44:54 +0000
committerRichard M. Stallman <rms@gnu.org>1996-02-11 23:44:54 +0000
commit4163caf83068481c3955b4160751825fab972da8 (patch)
tree6dbe049c1eb0335d419980f3b6c9e91df6308312 /src
parent315095d47ee478ca80c8cb8f53e45522373b47f5 (diff)
downloademacs-4163caf83068481c3955b4160751825fab972da8.tar.gz
(xmalloc_widget_value): Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index df4a5e3e30e..9257cf792f3 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -118,10 +118,10 @@ static void list_of_items ();
/* Allocate a widget_value, blocking input. */
-widget_value
+widget_value *
xmalloc_widget_value ()
{
- widget_value value;
+ widget_value *value;
BLOCK_INPUT;
value = malloc_widget_value ();