Packets: Fix 64bit failure
g0dil [Mon, 28 Sep 2009 11:20:36 +0000 (11:20 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1452 270642c3-0616-0410-b53a-bc976706d245

senf/Packets/DumpFormat.cc

index 2ce3b3f..2c99df2 100644 (file)
@@ -40,7 +40,7 @@
 
 prefix_ std::string senf::fieldName(std::string const & s)
 {
-    std::string t (std::max(unsigned(SENF_PACKET_DUMP_COLON_COLUMN+1), s.size()+5), ' ');
+    std::string t (std::max(std::string::size_type(SENF_PACKET_DUMP_COLON_COLUMN+1), s.size()+5), ' ');
     std::copy(s.begin(), s.end(), t.begin()+2);
     t[t.size()-2] = ':';
     return t;