- fixed some gcc 4.3 warnings
authorJan Kupec <jkupec@suse.cz>
Mon, 8 Oct 2007 15:39:38 +0000 (15:39 +0000)
committerJan Kupec <jkupec@suse.cz>
Mon, 8 Oct 2007 15:39:38 +0000 (15:39 +0000)
src/zypper-misc.cc
src/zypper-sources.cc

index f9f430b..b379d6f 100644 (file)
@@ -965,7 +965,7 @@ bool xml_list_patches ()
     if ( it->status().isNeeded())
     {
       Patch::constPtr patch = asKind<Patch>(res);
-      if (pkg_mgr_available && patch->affects_pkg_manager()  ||
+      if ((pkg_mgr_available && patch->affects_pkg_manager())  ||
        !pkg_mgr_available )
       {
         cout << " <update ";
index 6a6fb47..f2f4f97 100644 (file)
@@ -869,7 +869,7 @@ ostream& operator << (ostream& s, const vector<T>& v) {
 }
 
 // ----------------------------------------------------------------------------
-
+/*
 static
 bool looks_like_url (const string& s) {
   static bool schemes_shown = false;
@@ -887,7 +887,7 @@ bool looks_like_url (const string& s) {
   }
   return false;
 }
-
+*/
 static bool do_remove_repo(const RepoInfo & repoinfo)
 {
   RepoManager manager;
@@ -970,7 +970,7 @@ void rename_repo(const std::string & alias, const std::string & newalias)
 void modify_repo(const string & alias)
 {
   // tell whether currenlty processed options are contradicting each other
-  bool contradiction = false;
+  // bool contradiction = false;
   // TranslatorExplanation speaking of two mutually contradicting command line options
   string msg_contradition =
     _("%s used together with %s, which contradict each other."