From: Joel Becker Date: Fri, 2 Mar 2007 20:23:00 +0000 (+0100) Subject: fio.h: Grow td->verror X-Git-Tag: fio-1.13~2^2~1 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=480936dd2270baa028a8ad8ab20719caa0429968;hp=37e974a5eed8aafc6fc865b57e803837eebd3509 fio.h: Grow td->verror td->verror was 80 bytes. This truncates some error messages when the filename or function name is long. Grow it to a round 128B. Signed-off-by: Joel Becker Signed-off-by: Jens Axboe --- diff --git a/fio.h b/fio.h index dd1fc62b..faa0cfb7 100644 --- a/fio.h +++ b/fio.h @@ -288,7 +288,7 @@ struct thread_data { char *name; char *directory; char *filename; - char verror[80]; + char verror[128]; pthread_t thread; int thread_number; int groupid;