Skip to content

Commit

Permalink
Merge pull request #6491 from ejohnstown/fix-imp-conv
Browse files Browse the repository at this point in the history
Implicit Type Conversion Fix
  • Loading branch information
JacobBarthelmeh authored Jun 9, 2023
2 parents a56070c + 7b0283f commit 9ffa9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -66573,7 +66573,7 @@ static byte* test_find_string(const char *string,
{
int string_size, i;

string_size = XSTRLEN(string);
string_size = (int)XSTRLEN(string);
for (i = 0; i < buf_size - string_size - 1; i++) {
if (XSTRCMP((char*)&buf[i], string) == 0)
return &buf[i];
Expand Down

0 comments on commit 9ffa9fa

Please sign in to comment.