fix gcc warnings
authorMichael Andres <ma@suse.de>
Sat, 27 Apr 2013 22:03:37 +0000 (00:03 +0200)
committerMichael Andres <ma@suse.de>
Mon, 29 Apr 2013 08:36:42 +0000 (10:36 +0200)
zypp/PoolQuery.cc
zypp/ZYppFactory.cc

index 92cf5173513521160137f5840bbf47a6d49e6421..2aaf974ac89f397ea2f93934d13f426d66a9d981 100644 (file)
@@ -407,11 +407,11 @@ 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 )
+         && _attrs.begin()->first == sat::SolvAttr::name ) )
       {
        return ( _strings == rhs._strings
              && _attrs == rhs._attrs
index 1c03903e157e44cb4285c3340b6e798fed3bc0a1..11a74358ec97779bfe2d1610876ee3ee2f6baf4c 100644 (file)
@@ -87,10 +87,10 @@ namespace zypp
   {
   public:
     ZYppGlobalLock()
-    : _cleanLock( false )
-    , _zyppLockFilePath( env::ZYPP_LOCKFILE_ROOT() / "/var/run/zypp.pid" )
+    : _zyppLockFilePath( env::ZYPP_LOCKFILE_ROOT() / "/var/run/zypp.pid" )
     , _zyppLockFile( NULL )
     , _lockerPid( 0 )
+    , _cleanLock( false )
     {
       filesystem::assert_dir(_zyppLockFilePath.dirname() );
     }