Killed a warning dead.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@928 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder 2002-08-29 00:01:17 +00:00
parent 74ec200f31
commit a6e96214ed

View File

@ -1087,7 +1087,7 @@ MimeSnifferTest::ParserTest() {
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");
}