diff options
author | ka7 <[email protected]> | 2017-01-03 18:31:18 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-01-03 11:31:18 -0600 |
commit | 4e33ba4c389f59b74138bf7130e924a4230d64e9 (patch) | |
tree | 6707105987e45e846d0b0a5f0ad6e3e30191e77f /module/zfs/lz4.c | |
parent | a5e046eaacad20487188c9eef231554e1401d8c9 (diff) |
Fix spelling
Reviewed-by: Brian Behlendorf <[email protected]
Reviewed-by: Giuseppe Di Natale <[email protected]>>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Haakan T Johansson <[email protected]>
Closes #5547
Closes #5543
Diffstat (limited to 'module/zfs/lz4.c')
-rw-r--r-- | module/zfs/lz4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/lz4.c b/module/zfs/lz4.c index 5caa6a854..f8294e85e 100644 --- a/module/zfs/lz4.c +++ b/module/zfs/lz4.c @@ -63,7 +63,7 @@ lz4_compress_zfs(void *s_start, void *d_start, size_t s_len, return (s_len); /* - * Encode the compresed buffer size at the start. We'll need this in + * Encode the compressed buffer size at the start. We'll need this in * decompression to counter the effects of padding which might be * added to the compressed buffer and which, if unhandled, would * confuse the hell out of our decompression function. @@ -205,7 +205,7 @@ lz4_decompress_zfs(void *s_start, void *d_start, size_t s_len, /* * Little Endian or Big Endian? - * Note: overwrite the below #define if you know your architecture endianess. + * Note: overwrite the below #define if you know your architecture endianness. */ #if defined(_BIG_ENDIAN) #define LZ4_BIG_ENDIAN 1 |