]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lib: [loopdev.c] correct trivial typo
authorDavidlohr Bueso <dave@gnu.org>
Mon, 8 Aug 2011 03:16:19 +0000 (23:16 -0400)
committerKarel Zak <kzak@redhat.com>
Mon, 8 Aug 2011 11:53:59 +0000 (13:53 +0200)
Should say "failed to find" instead of "failed to found".

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
lib/loopdev.c
libmount/src/context.c

index 0ef71363f474a5e38df8774e6bb6314e29a8337a..fa3ad456011628818f60a6edc8c44f37d2d3092e 100644 (file)
@@ -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));
                }
 
index d9b311621686f409b59061a6122e9a4dc43de2e5..22102607eb489f3928d9d79097e9e381c7bbdd53 100644 (file)
@@ -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;
 }