]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
fallocate: add missing semicolon
authorMatti Niemenmaa <matti.niemenmaa+git@iki.fi>
Mon, 10 Sep 2018 12:21:31 +0000 (15:21 +0300)
committerMatti Niemenmaa <matti.niemenmaa+git@iki.fi>
Mon, 10 Sep 2018 12:25:16 +0000 (15:25 +0300)
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>
sys-utils/fallocate.c

index 48a1b2793fd60ab92ee7658068f84617ff56639f..ba3867cae8e07334a77b63b32b518155986fd030 100644 (file)
@@ -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++;