diff options
author | ehriche <eehrich@googlemail.com> | 2015-05-06 00:56:59 +0200 |
---|---|---|
committer | ehriche <eehrich@googlemail.com> | 2015-05-06 01:22:31 +0200 |
commit | 897a1aade5332753d9fda950d80495798cdc85b4 (patch) | |
tree | 53f4cab913ef39a1563704751df07d43ebfef42f /core/io | |
parent | fe13c728fd44a1271f218685fc73ed4ba8d3ce7a (diff) |
optional formal changes
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/resource_format_xml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_format_xml.cpp b/core/io/resource_format_xml.cpp index 9de33e7ef3..3e625ba6fd 100644 --- a/core/io/resource_format_xml.cpp +++ b/core/io/resource_format_xml.cpp @@ -1850,7 +1850,7 @@ void ResourceFormatSaverXMLInstance::escape(String& p_str) { p_str=p_str.replace(">","<"); p_str=p_str.replace("'","'"); p_str=p_str.replace("\"","""); - for (int i=1;i<32;i++) { + for (char i=1;i<32;i++) { char chr[2]={i,0}; const char hexn[16]={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}; |