1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

cleanup: use "" around type in error message

A bit more cleaner error message for wrong discards paramater.
This commit is contained in:
Zdenek Kabelac 2013-06-24 12:00:48 +02:00
parent 19b064a309
commit da9263905c

View File

@ -658,7 +658,7 @@ int get_pool_discards(const char *str, thin_discards_t *discards)
else if (!strcasecmp(str, "ignore"))
*discards = THIN_DISCARDS_IGNORE;
else {
log_error("Thin pool discards type %s is unknown.", str);
log_error("Thin pool discards type \"%s\" is unknown.", str);
return 0;
}