From 47c2233026225267f797efe7dacedce59f475c99 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 10 Mar 2026 08:30:35 +0000 Subject: [PATCH] daemon/blkid.c: Fix compilation error introduced by earlier change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit blkid.c: In function ‘test_blkid_p_i_opt’: blkid.c:105:3: error: label ‘command_failed’ defined but not used [-Werror=unused-label] 105 | command_failed: | ^~~~~~~~~~~~~~ Fixes: https://github.com/libguestfs/libguestfs/pull/315 Fixes: commit ff4467a1a48e8c9854b4ab6da5ce16a15741f0db --- daemon/blkid.c | 1 - 1 file changed, 1 deletion(-) diff --git a/daemon/blkid.c b/daemon/blkid.c index 5751a4d89..2937ba6ac 100644 --- a/daemon/blkid.c +++ b/daemon/blkid.c @@ -102,7 +102,6 @@ test_blkid_p_i_opt (void) r = commandr (NULL, &err, "blkid", "-p", "/dev/null", NULL); if (r == -1) { /* This means we couldn't run the blkid command at all. */ - command_failed: reply_with_error ("could not run 'blkid' command: %s", err); return -1; }