Skip to content

Commit 285ac8d

Browse files
ColinIanKingmcgrof
authored andcommitted
kernel: Fix spelling mistake "compresser" -> "compressor"
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]>
1 parent 96dd875 commit 285ac8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/module_decompress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static ssize_t module_gzip_decompress(struct load_info *info,
106106

107107
rc = zlib_inflateInit2(&s, -MAX_WBITS);
108108
if (rc != Z_OK) {
109-
pr_err("failed to initialize decompresser: %d\n", rc);
109+
pr_err("failed to initialize decompressor: %d\n", rc);
110110
retval = -EINVAL;
111111
goto out;
112112
}

0 commit comments

Comments
 (0)