fix tools to compile
authorMichael Andres <ma@suse.de>
Fri, 4 Sep 2009 11:02:31 +0000 (13:02 +0200)
committerMichael Andres <ma@suse.de>
Fri, 4 Sep 2009 11:02:31 +0000 (13:02 +0200)
VERSION.cmake
tools/NameReqPrv.cc

index 90d200b..87f37c6 100644 (file)
@@ -61,8 +61,8 @@
 SET(LIBZYPP_MAJOR "6")
 SET(LIBZYPP_COMPATMINOR "11")
 SET(LIBZYPP_MINOR "14")
-SET(LIBZYPP_PATCH "1")
+SET(LIBZYPP_PATCH "2")
 #
-# LAST RELEASED: 6.14.1 (11)
+# LAST RELEASED: 6.14.2 (11)
 # (The number in parenthesis is LIBZYPP_COMPATMINOR)
 #=======
index 1d847b2..47a83a8 100644 (file)
@@ -48,8 +48,8 @@ void tableOut( const std::string & s1 = std::string(),
                const std::string & s5 = std::string() )
 {
   message << "  ";
-#define TABEL(N) static unsigned w##N = 0; if ( ! s##N.empty() ) w##N = std::max( w##N, s##N.size() ); message << str::form( " %-*s ", w##N, s##N.c_str() )
-#define TABER(N) static unsigned w##N = 0; if ( ! s##N.empty() ) w##N = std::max( w##N, s##N.size() ); message << str::form( " %*s ", w##N, s##N.c_str() )
+#define TABEL(N) static unsigned w##N = 0; if ( ! s##N.empty() ) w##N = std::max( w##N, unsigned(s##N.size()) ); message << str::form( " %-*s ", w##N, s##N.c_str() )
+#define TABER(N) static unsigned w##N = 0; if ( ! s##N.empty() ) w##N = std::max( w##N, unsigned(s##N.size()) ); message << str::form( " %*s ", w##N, s##N.c_str() )
   TABER( 1 ); TABEL( 2 ); TABEL( 3 ); TABEL( 4 ); TABEL( 5 );
 #undef TABEL
   message << endl;
@@ -210,4 +210,4 @@ int main( int argc, char * argv[] )
 
   INT << "===[END]============================================" << endl << endl;
   return 0;
-}
\ No newline at end of file
+}