From ad2d0d8587d84c43bc6c9c7fc927ca1871d2bd36 Mon Sep 17 00:00:00 2001 From: Davidlohr Bueso Date: Sun, 7 Aug 2011 23:16:19 -0400 Subject: [PATCH] lib: [loopdev.c] correct trivial typo Should say "failed to find" instead of "failed to found". Signed-off-by: Davidlohr Bueso --- lib/loopdev.c | 2 +- libmount/src/context.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.3