diff options
author | Julius Werner <jwerner@chromium.org> | 2016-02-12 22:34:07 (GMT) |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2016-02-13 06:49:52 (GMT) |
commit | 4fcb2e17fb065f1d061a9c72066dd4dc1eb94a3f (patch) | |
tree | 7f380b82ca3eed2307acf1a8c219b390fc059535 /lib | |
parent | ad564c872089f61f1142c3544b9fd140093bd162 (diff) | |
download | lz4-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')
-rw-r--r-- | lib/Makefile | 10 | ||||
-rw-r--r-- | lib/lz4frame.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile index f4d8af9..12a741d 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -2,18 +2,18 @@ # LZ4 library - Makefile # Copyright (C) Yann Collet 2011-2015 # All rights reserved. -# +# # BSD license # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: -# +# # * Redistributions of source code must retain the above copyright notice, this # list of conditions and the following disclaimer. -# +# # * Redistributions in binary form must reproduce the above copyright notice, this # list of conditions and the following disclaimer in the documentation and/or # other materials provided with the distribution. -# +# # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE @@ -24,7 +24,7 @@ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# +# # You can contact the author at : # - LZ4 source repository : https://github.com/Cyan4973/lz4 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c 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. |