From 415a912b969c24a60c47ff7e74e560047b2d747f Mon Sep 17 00:00:00 2001
From: Dan Gudmundsson <dgud@erlang.org>
Date: Mon, 16 May 2016 10:30:48 +0200
Subject: Fix compilation warning

---
 lib/wx/test/wx_class_SUITE.erl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'lib')

diff --git a/lib/wx/test/wx_class_SUITE.erl b/lib/wx/test/wx_class_SUITE.erl
index 6944a78360..0a3c4659bf 100644
--- a/lib/wx/test/wx_class_SUITE.erl
+++ b/lib/wx/test/wx_class_SUITE.erl
@@ -646,8 +646,8 @@ modal(Config) ->
 	    %% need to sleep so we know that the window is stuck in
 	    %% the ShowModal event loop and not in an earlier event loop
 	    %% wx2.8 invokes the event loop from more calls than wx-3
-	    receive {dialog, M1, 1} -> timer:sleep(1200), ets:insert(test_state, {M1, ready}) end,
-	    receive {dialog, M2, 2} -> timer:sleep(1200), ets:insert(test_state, {M2, ready}) end,
+	    M1 = receive {dialog, W1, 1} -> timer:sleep(1200), ets:insert(test_state, {W1, ready}), W1 end,
+	    M2 = receive {dialog, W2, 2} -> timer:sleep(1200), ets:insert(test_state, {W2, ready}), W2 end,
 
 	    receive done -> ok end,
 	    receive {dialog_done, M2, 2} -> M2 end,
-- 
cgit v1.2.3