From: Tobias Stoeckmann Date: Sat, 18 Apr 2026 08:15:37 +0000 (+0200) Subject: mkfs.minix: Remove newline from error message X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=414ae48217c454efacee7d37b9e6ee6a9966e9ee;p=thirdparty%2Futil-linux.git mkfs.minix: Remove newline from error message The errx function adds a newline by itself already. Signed-off-by: Tobias Stoeckmann --- diff --git a/disk-utils/mkfs.minix.c b/disk-utils/mkfs.minix.c index 2b7ab3d2a..6a9c7ba81 100644 --- a/disk-utils/mkfs.minix.c +++ b/disk-utils/mkfs.minix.c @@ -725,7 +725,7 @@ static void determine_device_blocks(struct fs_control *ctl, const struct stat *s ctl->fs_blocks = dev_blocks; else if (dev_blocks < ctl->fs_blocks) errx(MKFS_EX_ERROR, - _("%s: requested blocks (%llu) exceeds available (%llu) blocks\n"), + _("%s: requested blocks (%llu) exceeds available (%llu) blocks"), ctl->device_name, ctl->fs_blocks, dev_blocks); if (ctl->fs_blocks < 10) errx(MKFS_EX_ERROR, _("%s: number of blocks too small"), ctl->device_name);