summaryrefslogtreecommitdiffstats
path: root/lib/lz4frame.h
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2016-02-12 22:34:07 (GMT)
committerJulius Werner <jwerner@chromium.org>2016-02-13 06:49:52 (GMT)
commit4fcb2e17fb065f1d061a9c72066dd4dc1eb94a3f (patch)
tree7f380b82ca3eed2307acf1a8c219b390fc059535 /lib/lz4frame.h
parentad564c872089f61f1142c3544b9fd140093bd162 (diff)
downloadlz4-4fcb2e17fb065f1d061a9c72066dd4dc1eb94a3f.zip
lz4-4fcb2e17fb065f1d061a9c72066dd4dc1eb94a3f.tar.gz
lz4-4fcb2e17fb065f1d061a9c72066dd4dc1eb94a3f.tar.bz2
Remove whitespace from ends of lines
I'm trying to import LZ4 code into a project with strict linting requirements. This will make that easier. Signed-off-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'lib/lz4frame.h')
-rw-r--r--lib/lz4frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index 47147b7..c039e5d 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -258,7 +258,7 @@ size_t LZ4F_getFrameInfo(LZ4F_decompressionContext_t dctx,
/* LZ4F_getFrameInfo()
* This function decodes frame header information (such as max blockSize, frame checksum, etc.).
* Its usage is optional. The objective is to extract frame header information, typically for allocation purposes.
- * A header size is variable and can be from 7 to 15 bytes. It's also possible to input more bytes than that.
+ * A header size is variable and can be from 7 to 15 bytes. It's also possible to input more bytes than that.
* The number of bytes read from srcBuffer will be updated within *srcSizePtr (necessarily <= original value).
* (note that LZ4F_getFrameInfo() can also be used anytime *after* starting decompression, in this case 0 input byte is enough)
* Frame header info is *copied into* an already allocated LZ4F_frameInfo_t structure.