X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=verify-state.h;h=6da1585b24657a60d7357d4f04f6f445f01544f3;hp=901aa0a47bcec6d016485e4c6b518c8fa65171d0;hb=fc220349e45144360917db48010b503a9874930d;hpb=ecfd2bb08cc87bc9a1b3d612258f1fdfb4d09698 diff --git a/verify-state.h b/verify-state.h index 901aa0a4..6da1585b 100644 --- a/verify-state.h +++ b/verify-state.h @@ -3,6 +3,8 @@ #include #include +#include +#include "lib/nowarn_snprintf.h" struct thread_rand32_state { uint32_t s[4]; @@ -76,7 +78,7 @@ static inline size_t thread_io_list_sz(struct thread_io_list *s) static inline struct thread_io_list *io_list_next(struct thread_io_list *s) { - return (void *) s + thread_io_list_sz(s); + return (struct thread_io_list *)((char *) s + thread_io_list_sz(s)); } static inline void verify_state_gen_name(char *out, size_t size, @@ -100,7 +102,7 @@ static inline void verify_state_gen_name(char *out, size_t size, name++; } while (1); - snprintf(out, size, "%s-%s-%d-verify.state", prefix, ename, num); + nowarn_snprintf(out, size, "%s-%s-%d-verify.state", prefix, ename, num); out[size - 1] = '\0'; }