Explicitly use parentheses
authorMichael Andres <ma@suse.de>
Tue, 25 Feb 2014 10:21:49 +0000 (11:21 +0100)
committerMichael Andres <ma@suse.de>
Tue, 25 Feb 2014 10:21:49 +0000 (11:21 +0100)
zypp/PoolQuery.cc

index 2aaf974..4e286b2 100644 (file)
@@ -407,8 +407,8 @@ namespace zypp
        // We unify those two forms to enable zypper to remove zypp locks
        // without need to actually evaluate the query (which would require
        // repos to be loaded).
-       || ( ( _flags.isModeString() && rhs._flags.isModeGlob()
-           || _flags.isModeGlob() && rhs._flags.isModeString() )
+       || ( ( ( _flags.isModeString() && rhs._flags.isModeGlob() )
+           || ( _flags.isModeGlob() && rhs._flags.isModeString() ) )
          && _strings.empty()
          && _attrs.size() == 1
          && _attrs.begin()->first == sat::SolvAttr::name ) )