diff options
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1325,7 +1325,7 @@ char *TextReplace(char *text, const char *replace, const char *by) char *TextInsert(const char *text, const char *insert, int position) { int textLen = TextLength(text); - int insertLen = TextLength(insert); + int insertLen = TextLength(insert); char *result = (char *)RL_MALLOC(textLen + insertLen + 1); |
