mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
Let dStrncat use strncat because it's probably set up for that
This commit is contained in:
parent
963333c583
commit
cd79088939
|
|
@ -73,7 +73,7 @@ inline char *dStrcat(char *dst, const char *src, dsize_t len)
|
|||
|
||||
inline char *dStrncat(char *dst, const char *src, dsize_t len)
|
||||
{
|
||||
return dStrcat(dst, src, len);
|
||||
return strncat(dst, src, len);
|
||||
}
|
||||
|
||||
inline S32 dStrcmp(const char *str1, const char *str2)
|
||||
|
|
|
|||
Loading…
Reference in a new issue