Fixed warning when building with 64 bit compiler.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34200 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -56,10 +56,10 @@ using std::map;
|
|||||||
using std::string;
|
using std::string;
|
||||||
|
|
||||||
// the maximum length of an attribute listing we support
|
// the maximum length of an attribute listing we support
|
||||||
static const int kMaxAttributeListingLength = 10240;
|
static const size_t kMaxAttributeListingLength = 10240;
|
||||||
|
|
||||||
// the maximum attribute length we support
|
// the maximum attribute length we support
|
||||||
static const int kMaxAttributeLength = 10240 * 4;
|
static const size_t kMaxAttributeLength = 10240 * 4;
|
||||||
|
|
||||||
|
|
||||||
// mangle_attribute_name
|
// mangle_attribute_name
|
||||||
|
|||||||
Reference in New Issue
Block a user