mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-19 20:45:16 +08:00
Removed improper prefix for function
This commit is contained in:
@@ -41,7 +41,7 @@ int CEscapeString(const char* src, int src_len, char* dest,
|
|||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
sprintf_s(dest + used, dest_len, "\\%03o", c);
|
sprintf_s(dest + used, dest_len, "\\%03o", c);
|
||||||
#else
|
#else
|
||||||
std::sprintf(dest + used, "\\%03o", c);
|
sprintf(dest + used, "\\%03o", c);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
used += 4;
|
used += 4;
|
||||||
|
Reference in New Issue
Block a user