mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
dmscript: Replaced && 0xff by & 0xff.
This commit is contained in:
parent
af30447348
commit
7c0de330f9
@ -647,8 +647,8 @@ const char *debugstr_fourcc (DWORD fourcc) {
|
||||
const char *debugstr_dmversion (LPDMUS_VERSION version) {
|
||||
if (!version) return "'null'";
|
||||
return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
|
||||
(int)((version->dwVersionMS && 0xFFFF0000) >> 8), (int)(version->dwVersionMS && 0x0000FFFF),
|
||||
(int)((version->dwVersionLS && 0xFFFF0000) >> 8), (int)(version->dwVersionLS && 0x0000FFFF));
|
||||
(int)((version->dwVersionMS & 0xFFFF0000) >> 8), (int)(version->dwVersionMS & 0x0000FFFF),
|
||||
(int)((version->dwVersionLS & 0xFFFF0000) >> 8), (int)(version->dwVersionLS & 0x0000FFFF));
|
||||
}
|
||||
|
||||
/* returns name of given GUID */
|
||||
|
Loading…
Reference in New Issue
Block a user