Reviewed by John and Oliver.
No regression test possible.
* platform/win/SoundWin.cpp:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@23900
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2007-06-30 Adam Roben <aroben@apple.com>
+ Make an int -> UINT conversion explicit that MSVC /W4 complains about
+
+ Reviewed by John and Oliver.
+
+ No regression test possible.
+
+ * platform/win/SoundWin.cpp:
+
+2007-06-29 Adam Roben <aroben@apple.com>
+
Remove unreachable code uncovered by MSVC /W4
Reviewed by Oliver.
namespace WebCore {
-void systemBeep() { MessageBeep(-1); }
+void systemBeep() { MessageBeep(static_cast<UINT>(-1)); }
} // namespace WebCore