From 480936dd2270baa028a8ad8ab20719caa0429968 Mon Sep 17 00:00:00 2001 From: Joel Becker Date: Fri, 2 Mar 2007 21:23:00 +0100 Subject: [PATCH 1/1] 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 --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.25.1