diff options
author | Dan Gudmundsson <[email protected]> | 2016-05-16 10:30:48 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2016-05-16 10:30:48 +0200 |
commit | 415a912b969c24a60c47ff7e74e560047b2d747f (patch) | |
tree | 9f05ce4de4056d24fe8dfddcd947fa162090ee52 /lib | |
parent | f8e2668ef2ea42fbbf695d63cb840913c32f1d72 (diff) | |
download | otp-415a912b969c24a60c47ff7e74e560047b2d747f.tar.gz otp-415a912b969c24a60c47ff7e74e560047b2d747f.tar.bz2 otp-415a912b969c24a60c47ff7e74e560047b2d747f.zip |
Fix compilation warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wx/test/wx_class_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
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, |