Skip to content
Snippets Groups Projects
Commit 285ac8dc authored by Colin Ian King's avatar Colin Ian King Committed by Luis Chamberlain
Browse files

kernel: Fix spelling mistake "compresser" -> "compressor"


There is a spelling mistake in a pr_err error message. Fix it.

Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
parent 96dd8754
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment