Module: wine Branch: master Commit: 97802ef16bb42e4832bab08c9c766ffde2f91a84 URL: http://source.winehq.org/git/wine.git/?a=commit;h=97802ef16bb42e4832bab08c9c...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Thu Nov 6 13:15:33 2008 +0100
winmm/tests: Fix failure on Win9x and WinMe.
---
dlls/winmm/tests/mci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winmm/tests/mci.c b/dlls/winmm/tests/mci.c index 9138b60..8764b30 100644 --- a/dlls/winmm/tests/mci.c +++ b/dlls/winmm/tests/mci.c @@ -33,7 +33,7 @@ START_TEST(mci) char buf[1024]; HWND hwnd;
- hwnd = CreateWindowExA(0, "winmm test", "", WS_POPUP, 0,0,100,100, + hwnd = CreateWindowExA(0, "static", "winmm test", WS_POPUP, 0,0,100,100, 0, 0, 0, NULL);
err = mciSendString(command_open, NULL, 0, NULL);