From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> I think gcc extension should be avoided when it can be done by just changing a pointer type. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- engines/binject.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/binject.c b/engines/binject.c index 932534a..792dbbd 100644 --- a/engines/binject.c +++ b/engines/binject.c @@ -59,11 +59,12 @@ static int pollin_events(struct pollfd *pfds, int fds) return 0; } -static unsigned int binject_read_commands(struct thread_data *td, void *p, +static unsigned int binject_read_commands(struct thread_data *td, void *buf, int left, int *err) { struct fio_file *f; int i, ret, events; + char *p = buf; one_more: events = 0; -- 2.9.4 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html