win-capture: Fix parameter type warning

Parameter expects uint8_t*, was using char*, so just cast to fix it.
This commit is contained in:
jp9000
2015-02-08 16:40:34 -08:00
parent 883d93e84c
commit 731930af50

View File

@@ -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;