From: Artem Bityutskiy Date: Wed, 2 Apr 2008 08:04:51 +0000 (+0300) Subject: ubi-utils: fix printing typos X-Git-Tag: v1.2.0~44 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fcb52ccc99679460640386c297023f852b108f68;p=mtd-utils.git ubi-utils: fix printing typos Signed-off-by: Artem Bityutskiy --- diff --git a/ubi-utils/new-utils/src/common.c b/ubi-utils/new-utils/src/common.c index 50859dc..3d70435 100644 --- a/ubi-utils/new-utils/src/common.c +++ b/ubi-utils/new-utils/src/common.c @@ -88,7 +88,7 @@ long long ubiutils_get_bytes(const char *str) long long bytes = strtoull(str, &endp, 0); if (endp == str || bytes < 0) { - fprintf(stderr, "incorrect amount of bytes: \"%s\"", str); + fprintf(stderr, "incorrect amount of bytes: \"%s\"\n", str); return -1; } @@ -97,7 +97,7 @@ long long ubiutils_get_bytes(const char *str) if (mult == -1) { fprintf(stderr, "bad size specifier: \"%s\" - " - "should be 'KiB', 'MiB' or 'GiB'", endp); + "should be 'KiB', 'MiB' or 'GiB'\n", endp); return -1; } bytes *= mult; diff --git a/ubi-utils/new-utils/src/ubiupdatevol.c b/ubi-utils/new-utils/src/ubiupdatevol.c index 76d9f4e..5c67fc9 100644 --- a/ubi-utils/new-utils/src/ubiupdatevol.c +++ b/ubi-utils/new-utils/src/ubiupdatevol.c @@ -211,7 +211,7 @@ static int update_volume(libubi_t libubi, struct ubi_vol_info *vol_info) err = stat(args.img, &st); if (err < 0) { - errmsg("stat failed on \"%s\"", args.node); + errmsg("stat failed on \"%s\"", args.img); goto out_free; }