Skip to content

Commit

Permalink
Keep lines short in gzread.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Feb 10, 2024
1 parent 1bff6f0 commit ceac32f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gzread.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,8 @@ int ZEXPORT gzread(gzFile file, voidp buf, unsigned len) {
}

/* -- see zlib.h -- */
z_size_t ZEXPORT gzfread(voidp buf, z_size_t size, z_size_t nitems, gzFile file) {
z_size_t ZEXPORT gzfread(voidp buf, z_size_t size, z_size_t nitems,
gzFile file) {
z_size_t len;
gz_statep state;

Expand Down

0 comments on commit ceac32f

Please sign in to comment.