Skip to content

Commit 89c8a17

Browse files
committed
extension: Add missing cast
1 parent 457c4ab commit 89c8a17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/_frida.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4753,7 +4753,7 @@ PyIOStream_read (PyIOStream * self, PyObject * args)
47534753

47544754
if (error == NULL)
47554755
{
4756-
if (bytes_read == count)
4756+
if ((unsigned long) bytes_read == count)
47574757
{
47584758
result = buffer;
47594759
}

0 commit comments

Comments
 (0)