From 7266546e371a581ae9040938757e8ac8548797c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Sj=C3=B6lund?= Date: Tue, 9 Apr 2024 10:33:24 +0200 Subject: [PATCH] fuse: fix spelling in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Erik Sjölund --- tools/cfs-fuse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cfs-fuse.c b/tools/cfs-fuse.c index 6e5fc40..d0bbe7e 100644 --- a/tools/cfs-fuse.c +++ b/tools/cfs-fuse.c @@ -1170,7 +1170,7 @@ int main(int argc, char *argv[]) erofs_data_size = s.st_size; if (erofs_data_size < EROFS_BLKSIZ) { - errx(EXIT_FAILURE, "To small image\n"); + errx(EXIT_FAILURE, "Too small image\n"); } /* Memory-map the file. */