From: Matti Niemenmaa Date: Mon, 10 Sep 2018 12:21:31 +0000 (+0300) Subject: fallocate: add missing semicolon X-Git-Tag: v2.33-rc1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1a7cfcb1d487c19c27287fe5136c46f3b7de1ab;p=thirdparty%2Futil-linux.git fallocate: add missing semicolon This broke compilation when HAVE_POSIX_FALLOCATE was undefined. The typo dates to the original posix_fallocate support added in commit 833f9a7aae713278eec5f85266597482f18c7370. Signed-off-by: Matti Niemenmaa --- diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c index 48a1b2793f..ba3867cae8 100644 --- a/sys-utils/fallocate.c +++ b/sys-utils/fallocate.c @@ -352,7 +352,7 @@ int main(int argc, char **argv) posix = 1; break; #else - errx(EXIT_FAILURE, _("posix_fallocate support is not compiled")) + errx(EXIT_FAILURE, _("posix_fallocate support is not compiled")); #endif case 'v': verbose++;