mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-19 07:05:36 +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
|
||||
sprintf_s(dest + used, dest_len, "\\%03o", c);
|
||||
#else
|
||||
std::sprintf(dest + used, "\\%03o", c);
|
||||
sprintf(dest + used, "\\%03o", c);
|
||||
#endif
|
||||
|
||||
used += 4;
|
||||
|
Reference in New Issue
Block a user