mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
switch to single quotes rather than double for nameprefixes
This commit is contained in:
parent
0f4355d518
commit
9df5c6e987
@ -845,7 +845,7 @@ int dm_report_output(struct dm_report *rh)
|
||||
|
||||
free(field_id);
|
||||
|
||||
if (!dm_pool_grow_object(rh->mem, "=\"", 2)) {
|
||||
if (!dm_pool_grow_object(rh->mem, "=\'", 2)) {
|
||||
log_error("dm_report: Unable to extend output line");
|
||||
goto bad;
|
||||
}
|
||||
@ -886,7 +886,7 @@ int dm_report_output(struct dm_report *rh)
|
||||
}
|
||||
|
||||
if (rh->flags & DM_REPORT_OUTPUT_FIELD_NAME_PREFIX)
|
||||
if (!dm_pool_grow_object(rh->mem, "\"", 1)) {
|
||||
if (!dm_pool_grow_object(rh->mem, "\'", 1)) {
|
||||
log_error("dm_report: Unable to extend output line");
|
||||
goto bad;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user