Mercurial > mplayer.hg
changeset 34999:b0133d910683
Add parentheses to avoid compiler warning.
author | ib |
---|---|
date | Wed, 15 Aug 2012 13:14:59 +0000 |
parents | 13e5444562fd |
children | 1de771df5f2f |
files | gui/win32/interface.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/win32/interface.c Wed Aug 15 13:10:16 2012 +0000 +++ b/gui/win32/interface.c Wed Aug 15 13:14:59 2012 +0000 @@ -796,7 +796,7 @@ mygui->playlist->current = 0; fullscreen = 0; - if(style == WS_VISIBLE | WS_POPUP) + if(style == (WS_VISIBLE | WS_POPUP)) { style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; SetWindowLong(mygui->videowindow, GWL_STYLE, style);