summaryrefslogtreecommitdiffstats
path: root/video/out/w32_common.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-04 11:43:02 +0100
committerwm4 <wm4@nowhere>2015-03-04 17:28:41 +0100
commit85bf102f54cfae9945d26f1edc0e642975881dfa (patch)
tree44a8805640644b30db8d7327314e0b19d5abe999 /video/out/w32_common.c
parent0bbf36b796336c41ce8a7ef2054276254ba56067 (diff)
downloadmpv-85bf102f54cfae9945d26f1edc0e642975881dfa.tar.bz2
mpv-85bf102f54cfae9945d26f1edc0e642975881dfa.tar.xz
win32: fix some more -Wparentheses warnings
Stupid compiler. For decode_surrogate_pair(), I changed the order of evaluation; it shouldn't matter, but this order is more readable in my opinion.
Diffstat (limited to 'video/out/w32_common.c')
-rw-r--r--video/out/w32_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/w32_common.c b/video/out/w32_common.c
index 1d82825294..12c37b5f0d 100644
--- a/video/out/w32_common.c
+++ b/video/out/w32_common.c
@@ -403,7 +403,7 @@ static int mod_state(struct vo_w32_state *w32)
static int decode_surrogate_pair(wchar_t lead, wchar_t trail)
{
- return 0x10000 + ((lead & 0x3ff) << 10) | (trail & 0x3ff);
+ return 0x10000 + (((lead & 0x3ff) << 10) | (trail & 0x3ff));
}
static int decode_utf16(struct vo_w32_state *w32, wchar_t c)