Removed improper prefix for function

This commit is contained in:
Matt Hill
2015-08-12 23:58:27 -04:00
parent 0b50919dbd
commit 5ffbe9bf7a

View File

@@ -41,7 +41,7 @@ int CEscapeString(const char* src, int src_len, char* dest,
#ifdef WIN32
sprintf_s(dest + used, dest_len, "\\%03o", c);
#else
std::sprintf(dest + used, "\\%03o", c);
sprintf(dest + used, "\\%03o", c);
#endif
used += 4;