Skip to content

Commit 80ad96a

Browse files
committed
Fix #5413
1 parent 7a5e8aa commit 80ad96a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/text/text_strings_management.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ void SliceTextParticle(TextParticle *tp, int particlePos, int sliceLength, TextP
316316
void SliceTextParticleByChar(TextParticle *tp, char charToSlice, TextParticle *tps, int *particleCount)
317317
{
318318
int tokenCount = 0;
319-
const char **tokens = TextSplit(tp->text, charToSlice, &tokenCount);
319+
char **tokens = TextSplit(tp->text, charToSlice, &tokenCount);
320320

321321
if (tokenCount > 1)
322322
{

0 commit comments

Comments
 (0)