win-capture: Fix parameter type warning
Parameter expects uint8_t*, was using char*, so just cast to fix it.
This commit is contained in:
@@ -61,7 +61,7 @@ bool load_graphics_offsets(bool is32bit)
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
size_t len = os_process_pipe_read(pp, data, 128);
|
||||
size_t len = os_process_pipe_read(pp, (uint8_t*)data, 128);
|
||||
if (!len)
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user