Bugfix - stupid typo.

git-svn-id: http://voip.null.ro/svn/yate@140 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2004-12-24 04:53:34 +00:00
parent fb3db14135
commit 8dd1a1cc21
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ String& String::toLower()
if (m_string) {
for (char *s = m_string; char c = *s; s++) {
if (('A' <= c) && (c <= 'Z'))
*s = c + 'a' - 'Z';
*s = c + 'a' - 'A';
}
}
return *this;