COMPRESSION: Remove long lines.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
parent
1cac584c46
commit
e23f97bbd6
@ -261,7 +261,8 @@ module compression
|
||||
case(compression_zstd)
|
||||
allocate(buffer(zstd_bound(size(input, kind=8))))
|
||||
csize = zstd_compress(c_loc(buffer), size(buffer, kind=8), &
|
||||
c_loc(input), size(input, kind=8), compression_level)
|
||||
c_loc(input), size(input, kind=8), &
|
||||
compression_level)
|
||||
if (csize > 0 .and. csize <= size(output, kind=8)) then
|
||||
output(1:csize) = buffer(1:csize)
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user