Skip to content

Commit 145dc0a

Browse files
NeilWbluca
authored andcommitted
homework-quota.c: correct error message in home_update_quota_btrfs
Fixes #30286
1 parent ba47598 commit 145dc0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/home/homework-quota.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ int home_update_quota_btrfs(UserRecord *h, const char *path) {
2929

3030
r = btrfs_qgroup_set_limit(path, 0, h->disk_size);
3131
if (r < 0)
32-
return log_error_errno(r, "Faled to set disk quota on subvolume %s: %m", path);
32+
return log_error_errno(r, "Failed to set disk quota on subvolume %s: %m", path);
3333

3434
log_info("Set btrfs quota.");
3535

0 commit comments

Comments
 (0)