# HG changeset patch # User ib # Date 1345036499 0 # Node ID b0133d9106833cbd54cb599075e00d70ee3346b0 # Parent 13e5444562fd5787338d3e2c41c9199ed3205af3 Add parentheses to avoid compiler warning. diff -r 13e5444562fd -r b0133d910683 gui/win32/interface.c --- 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);