From 452edf50c33f06a9c1fde809cda1123be2ff2e86 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 23 Nov 2009 19:35:58 +0000 Subject: [PATCH] Fixed warning when building with 64 bit compiler. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34200 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/build/libroot/fs_attr_untyped.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/libroot/fs_attr_untyped.cpp b/src/build/libroot/fs_attr_untyped.cpp index ff2f817573..0a3472f012 100644 --- a/src/build/libroot/fs_attr_untyped.cpp +++ b/src/build/libroot/fs_attr_untyped.cpp @@ -56,10 +56,10 @@ using std::map; using std::string; // 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 -static const int kMaxAttributeLength = 10240 * 4; +static const size_t kMaxAttributeLength = 10240 * 4; // mangle_attribute_name