From: Davidlohr Bueso Date: Mon, 8 Aug 2011 03:16:19 +0000 (-0400) Subject: lib: [loopdev.c] correct trivial typo X-Git-Tag: v2.20-rc2~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36;p=thirdparty%2Futil-linux.git lib: [loopdev.c] correct trivial typo Should say "failed to find" instead of "failed to found". Signed-off-by: Davidlohr Bueso --- diff --git a/lib/loopdev.c b/lib/loopdev.c index 0ef71363f4..fa3ad45601 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)); } diff --git a/libmount/src/context.c b/libmount/src/context.c index d9b3116216..22102607eb 100644 --- a/libmount/src/context.c +++ b/libmount/src/context.c @@ -1549,7 +1549,7 @@ int mnt_context_apply_fstab(struct libmnt_context *cxt) rc = apply_table(cxt, tab, MNT_ITER_BACKWARD); } if (rc) - DBG(CXT, mnt_debug_h(cxt, "failed to found entry in fstab/mtab")); + DBG(CXT, mnt_debug_h(cxt, "failed to find entry in fstab/mtab")); return rc; }