Skip to content

Commit

Permalink
kernel: Fix spelling mistake "compresser" -> "compressor"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a pr_err error message. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Luis Chamberlain <[email protected]>
  • Loading branch information
ColinIanKing authored and mcgrof committed Jan 13, 2022
1 parent 96dd875 commit 285ac8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/module_decompress.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static ssize_t module_gzip_decompress(struct load_info *info,

rc = zlib_inflateInit2(&s, -MAX_WBITS);
if (rc != Z_OK) {
pr_err("failed to initialize decompresser: %d\n", rc);
pr_err("failed to initialize decompressor: %d\n", rc);
retval = -EINVAL;
goto out;
}
Expand Down

0 comments on commit 285ac8d

Please sign in to comment.