From 4edf62487072d6e61b95bed6ca55750bf3110ae4 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 May 2025 10:03:06 +0100 Subject: [PATCH] file: Fix minor typo in debug message (cherry picked from commit a75db5636b94c9184f8eb02fd51182d935df64a6) --- plugins/file/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/file/file.c b/plugins/file/file.c index b8470c20..8e4acedd 100644 --- a/plugins/file/file.c +++ b/plugins/file/file.c @@ -989,7 +989,7 @@ file_zero (void *handle, uint32_t count, uint64_t offset, uint32_t flags) r = do_fallocate (h->fd, FALLOC_FL_ZERO_RANGE, offset, count); if (r == 0) { if (file_debug_zero) - nbdkit_debug ("h->can_zero-range: " + nbdkit_debug ("h->can_zero_range: " "zero succeeded using fallocate"); goto out; } -- 2.47.1