From fc2a6f2266bc616f6444fb580053f9ea26e6e563 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 3 Mar 2010 21:33:21 +0100 Subject: [PATCH] Quote profile name Makes for better reading. Signed-off-by: Jens Axboe --- init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.c b/init.c index 19c6340e..7785e9e4 100644 --- a/init.c +++ b/init.c @@ -1035,7 +1035,7 @@ static int load_profile(const char *profile) int i, in_global = 1; char jobname[32]; - dprint(FD_PARSE, "loading profile %s\n", profile); + dprint(FD_PARSE, "loading profile '%s'\n", profile); for (i = 0; i < PROFILE_END; i++) { if (!strcmp(profile, profiles[i])) @@ -1043,7 +1043,7 @@ static int load_profile(const char *profile) } if (i == PROFILE_END) { - log_err("fio: unknown profile %s\n", profile); + log_err("fio: unknown profile '%s'\n", profile); return 1; } -- 2.25.1