Commit b602787a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

winmm: Don't use toupper.

parent 2eb18491
......@@ -38,6 +38,7 @@
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#include "winternl.h"
#include "mmsystem.h"
#include "winemm.h"
......@@ -1054,7 +1055,7 @@ FOURCC WINAPI mmioStringToFOURCCA(LPCSTR sz, UINT uFlags)
for (i = 0; i < 4 && sz[i]; i++) {
if (uFlags & MMIO_TOUPPER) {
cc[i] = toupper(sz[i]);
cc[i] = RtlUpperChar(sz[i]);
} else {
cc[i] = sz[i];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment