summaryrefslogtreecommitdiffstats
path: root/lib/loopdev.c
diff options
context:
space:
mode:
authorDavidlohr Bueso2011-08-08 05:16:19 +0200
committerKarel Zak2011-08-08 13:53:59 +0200
commitad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36 (patch)
tree460fa1f0ab4c869ddbd175eb4cec8142d82b2e63 /lib/loopdev.c
parentlibmount: fix undefined sources (diff)
downloadkernel-qcow2-util-linux-ad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36.tar.gz
kernel-qcow2-util-linux-ad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36.tar.xz
kernel-qcow2-util-linux-ad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36.zip
lib: [loopdev.c] correct trivial typo
Should say "failed to find" instead of "failed to found". Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Diffstat (limited to 'lib/loopdev.c')
-rw-r--r--lib/loopdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/loopdev.c b/lib/loopdev.c
index 0ef71363f..fa3ad4560 100644
--- a/lib/loopdev.c
+++ b/lib/loopdev.c
@@ -1063,7 +1063,7 @@ static int test_loop_setup(const char *filename, const char *device)
if (!device) {
rc = loopcxt_find_unused(&lc);
if (rc)
- err(EXIT_FAILURE, "failed to found unused device");
+ err(EXIT_FAILURE, "failed to find unused device");
printf("Trying to use '%s'\n", loopcxt_get_device(&lc));
}