Brad King пре 17 година
родитељ
комит
3838ec7d9f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Source/cmXMLSafe.cxx

+ 1 - 1
Source/cmXMLSafe.cxx

@@ -82,7 +82,7 @@ cmsys_ios::ostream& operator<<(cmsys_ios::ostream& os, cmXMLSafe const& self)
           // encoding.  Instead of escaping these bytes, we should
           // handle the current locale and its encoding.
           char buf[16];
-          sprintf(buf, "&#x%hx;", static_cast<unsigned short>(c));
+          sprintf(buf, "[bad-char-%hx]", static_cast<unsigned short>(c));
           os << buf;
           }
         break;