From 00d253e2b2f435a5386582c3f857008e7ac355c2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 6 Apr 2020 22:13:01 +0200 Subject: patch 8.2.0523: loops are repeated Problem: Loops are repeated. Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882) --- src/gui_w32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui_w32.c') diff --git a/src/gui_w32.c b/src/gui_w32.c index e6b5dad54f..5af41059d2 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -7591,7 +7591,7 @@ gui_mch_tearoff( for (col = 0; col < 2; col++) { columnWidths[col] = 0; - for (pmenu = menu->children; pmenu != NULL; pmenu = pmenu->next) + FOR_ALL_CHILD_MENUS(menu, pmenu) { // Use "dname" here to compute the width of the visible text. text = (col == 0) ? pmenu->dname : pmenu->actext; -- cgit v1.2.3