* whitespace cleanup, no functional change

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26591 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Maurice Kalinowski
2008-07-23 22:22:26 +00:00
parent ba97f78287
commit 4d49d73f17
+1 -1
View File
@@ -1570,7 +1570,7 @@ BString::IReplace(char replaceThis, char withThis, int32 maxReplaceCount, int32
return *this; return *this;
for (int32 pos = min_clamp0(fromOffset,Length()); for (int32 pos = min_clamp0(fromOffset,Length());
maxReplaceCount > 0; maxReplaceCount--) { maxReplaceCount > 0; maxReplaceCount--) {
pos = _IFindAfter(tmp, pos, 1); pos = _IFindAfter(tmp, pos, 1);
if (pos < 0) if (pos < 0)
break; break;