summaryrefslogtreecommitdiff
path: root/transaction.c
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2018-11-26 18:08:21 +0100
committerDavid Sterba <dsterba@suse.com>2018-11-26 18:24:49 +0100
commit2cd4a76ea9914c35b0fb614ad68aa9aefd7e5dd7 (patch)
treefd91ea056002b4fee258e7da965b5c5f3e72a33a /transaction.c
parentb1d39a42a4efd640df365447aadb719eadf7fa49 (diff)
btrfs-progs: fix typos in user-visible strings
* error messages * help strings Generated by https://github.com/jsoref/spelling Issue: #154 Author: Josh Soref <jsoref@users.noreply.github.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'transaction.c')
-rw-r--r--transaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transaction.c b/transaction.c
index 7baf7d58..e756db33 100644
--- a/transaction.c
+++ b/transaction.c
@@ -32,7 +32,7 @@ struct btrfs_trans_handle* btrfs_start_transaction(struct btrfs_root *root,
if (!h)
return ERR_PTR(-ENOMEM);
if (root->commit_root) {
- error("commit_root aleady set when starting transaction");
+ error("commit_root already set when starting transaction");
kfree(h);
return ERR_PTR(-EINVAL);
}