mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
dswave: Replaced && 0xff by & 0xff.
This commit is contained in:
parent
7070059217
commit
2c10db0c2f
1 changed files with 2 additions and 2 deletions
|
@ -147,8 +147,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 a new issue