Skip to content

Commit 9ffa9fa

Browse files
Merge pull request #6491 from ejohnstown/fix-imp-conv
Implicit Type Conversion Fix
2 parents a56070c + 7b0283f commit 9ffa9fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66573,7 +66573,7 @@ static byte* test_find_string(const char *string,
6657366573
{
6657466574
int string_size, i;
6657566575

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

0 commit comments

Comments
 (0)