From 9d274c3e1c77c1f29c040901108fe5fb8a843044 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 3 Jul 2018 11:54:35 -0700 Subject: [PATCH] Fix typo in --with-x-toolkit=no code * src/xmenu.c (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Fix type typo introduced by 2018-06-14T22:59:08!eggert@cs.ucla.edu. --- src/xmenu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmenu.c b/src/xmenu.c index dc6f33112c5..58fba8c3225 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -2057,7 +2057,7 @@ struct pop_down_menu static void pop_down_menu (void *arg) { - union pop_down_menu *data = arg; + struct pop_down_menu *data = arg; struct frame *f = data->frame; XMenu *menu = data->menu; -- 2.39.2