diff --git a/WHATS_NEW b/WHATS_NEW index 1ee409f4a..52e99838e 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,7 @@ Version 2.02.34 - =================================== + Use return_0 in a couple more places. + Correct a function name typo in _line_append error message. Include limits.h in clvmd so it compiles with newer headers. Add VirtIO disks (vd) to filters. Fix resetting of MIRROR_IMAGE and VISIBLE_LV after removal of LV. (2.02.30) diff --git a/lib/config/config.c b/lib/config/config.c index c3b5f9c5c..64542686f 100644 --- a/lib/config/config.c +++ b/lib/config/config.c @@ -372,7 +372,7 @@ static int _line_append(struct output_line *outline, const char *fmt, ...) va_end(ap); if (!dm_pool_grow_object(outline->mem, &buf[0], strlen(buf))) { - log_error("dm_pool_grew_object failed for config line"); + log_error("dm_pool_grow_object failed for config line"); return 0; } diff --git a/lib/format_text/text_export.h b/lib/format_text/text_export.h index a0a961202..2f2b53156 100644 --- a/lib/format_text/text_export.h +++ b/lib/format_text/text_export.h @@ -16,8 +16,8 @@ #ifndef _LVM_TEXT_EXPORT_H #define _LVM_TEXT_EXPORT_H -#define outf(args...) do {if (!out_text(args)) {stack; return 0;}} while (0) -#define outnl(f) do {if (!f->nl(f)) {stack; return 0;}} while (0) +#define outf(args...) do {if (!out_text(args)) return_0;} while (0) +#define outnl(f) do {if (!f->nl(f)) return_0;} while (0) struct formatter; struct lv_segment;