mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Let dStrncat use strncat because it's probably set up for that
This commit is contained in:
parent
963333c583
commit
cd79088939
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue