diff options
author | Michi Henning <michi@zeroc.com> | 2004-03-29 03:40:57 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-03-29 03:40:57 +0000 |
commit | a766495f65576d8e2e9a6eacd00c25c85547115d (patch) | |
tree | 4a22f9c62e21da98894f8df0fe75b5fbda90b266 /cs/src/Ice/StringUtil.cs | |
parent | Removed warning about unused variable. (diff) | |
download | ice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.bz2 ice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.xz ice-a766495f65576d8e2e9a6eacd00c25c85547115d.zip |
*** empty log message ***
Diffstat (limited to 'cs/src/Ice/StringUtil.cs')
-rwxr-xr-x | cs/src/Ice/StringUtil.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/src/Ice/StringUtil.cs b/cs/src/Ice/StringUtil.cs index d0b1f624b3c..c917ddf439c 100755 --- a/cs/src/Ice/StringUtil.cs +++ b/cs/src/Ice/StringUtil.cs @@ -242,7 +242,7 @@ namespace IceInternal start++;
int len = s.Length;
int pos;
- while (start < len && (pos = s.IndexOf(quoteChar, start)) != -1)
+ while(start < len && (pos = s.IndexOf(quoteChar, start)) != -1)
{
if(s[pos - 1] != '\\')
{
|