Fix spelling mistake when running 'btrfsck' when argument doesn't exist.
authornick d <blumph@gmail.com>
Wed, 3 Jun 2009 16:04:41 +0000 (12:04 -0400)
committerChris Mason <chris.mason@oracle.com>
Wed, 3 Jun 2009 16:15:40 +0000 (12:15 -0400)
Signed-off-by: Chris Mason <chris.mason@oracle.com>
disk-io.c

index 239c114..82e24e6 100644 (file)
--- a/disk-io.c
+++ b/disk-io.c
@@ -557,7 +557,7 @@ struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr, int writes)
 
        fp = open(filename, flags, 0600);
        if (fp < 0) {
-               fprintf (stderr, "Coult not open %s\n", filename);
+               fprintf (stderr, "Could not open %s\n", filename);
                return NULL;
        }
        root = open_ctree_fd(fp, filename, sb_bytenr, writes);