shell32: Replace bitwise XOR with a contextually more proper operator.
diff --git a/dlls/shell32/ebrowser.c b/dlls/shell32/ebrowser.c
index 9cee1f0..87ff578 100644
--- a/dlls/shell32/ebrowser.c
+++ b/dlls/shell32/ebrowser.c
@@ -472,7 +472,7 @@
     else
         show_navpane = FALSE;
 
-    if(This->navpane.show ^ show_navpane)
+    if(This->navpane.show != show_navpane)
     {
         update_layout(This);
         size_panes(This);