[USER32]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 21 Feb 2011 20:55:45 +0000 (20:55 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Mon, 21 Feb 2011 20:55:45 +0000 (20:55 +0000)
Fix a typo. Fixes "Calling invalid routine number 0x10 in NtUserCallOneParam()"

svn path=/trunk/; revision=50858

reactos/dll/win32/user32/windows/messagebox.c

index 13b374a..3809f59 100644 (file)
@@ -890,7 +890,7 @@ BOOL
 WINAPI
 MessageBeep(UINT uType)
 {
-    return (BOOL)NtUserCallOneParam(ONEPARAM_ROUTINE_MESSAGEBEEP, uType);
+    return (BOOL)NtUserCallOneParam(uType, ONEPARAM_ROUTINE_MESSAGEBEEP);
 }