From: Jens Axboe Date: Wed, 3 Mar 2010 20:33:21 +0000 (+0100) Subject: Quote profile name X-Git-Tag: fio-1.38~41^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=fc2a6f2266bc616f6444fb580053f9ea26e6e563;p=fio.git Quote profile name Makes for better reading. Signed-off-by: Jens Axboe --- 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; }