Fixed a couple of warnings

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1275 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder 2002-09-29 07:15:31 +00:00
parent 16be2fb82f
commit 0a87d01ca0
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ Pattern::Pattern(const std::string &string)
// Build a mask with all bits turned on of the
// appropriate length
std::string mask = "";
for (int i = 0; i < string.length(); i++)
for (uint i = 0; i < string.length(); i++)
mask += (char)0xFF;
SetTo(string, mask);
}
@ -54,7 +54,7 @@ Pattern::GetErr() const {
void dumpStr(const std::string &string, const char *label = NULL) {
if (label)
printf("%s: ", label);
for (int i = 0; i < string.length(); i++)
for (uint i = 0; i < string.length(); i++)
printf("%x ", string[i]);
printf("\n");
}