From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> Callers don't always pass thread_options* to td_var(), nor is it dependent on a certain structure type, so just take void* without pointless cast. Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- parse.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parse.h b/parse.h index 54e3948..fb6abd1 100644 --- a/parse.h +++ b/parse.h @@ -107,8 +107,7 @@ typedef int (fio_opt_str_val_fn)(void *, long long *); typedef int (fio_opt_int_fn)(void *, int *); struct thread_options; -static inline void *td_var(struct thread_options *to, struct fio_option *o, - unsigned int offset) +static inline void *td_var(void *to, struct fio_option *o, unsigned int offset) { void *ret; -- 2.5.5 -- 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