summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatti Niemenmaa2018-09-10 14:21:31 +0200
committerMatti Niemenmaa2018-09-10 14:25:16 +0200
commitf1a7cfcb1d487c19c27287fe5136c46f3b7de1ab (patch)
treecc5d59e9913e572ce5e58254fbdda39cdae62634
parentMerge branch 'motd' of https://github.com/lnussel/util-linux (diff)
downloadkernel-qcow2-util-linux-f1a7cfcb1d487c19c27287fe5136c46f3b7de1ab.tar.gz
kernel-qcow2-util-linux-f1a7cfcb1d487c19c27287fe5136c46f3b7de1ab.tar.xz
kernel-qcow2-util-linux-f1a7cfcb1d487c19c27287fe5136c46f3b7de1ab.zip
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 <matti.niemenmaa+git@iki.fi>
-rw-r--r--sys-utils/fallocate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/fallocate.c b/sys-utils/fallocate.c
index 48a1b2793..ba3867cae 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++;