From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> No need to cast to void*. This is the only void* cast for memcpy(3) in the entire fio. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- engines/sg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sg.c b/engines/sg.c index b924ca3..833d920 100644 --- a/engines/sg.c +++ b/engines/sg.c @@ -184,7 +184,7 @@ re_read: if (hdr->info & SG_INFO_CHECK) { struct io_u *io_u; io_u = (struct io_u *)(hdr->usr_ptr); - memcpy((void*)&(io_u->hdr), (void*)hdr, sizeof(struct sg_io_hdr)); + memcpy(&io_u->hdr, hdr, sizeof(struct sg_io_hdr)); sd->events[i]->error = EIO; } } -- 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