Skip to content

Commit

Permalink
Make the names in functions declarations identical to definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
madler committed Oct 13, 2017
1 parent 723e928 commit a577351
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions gzwrite.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,9 @@ int ZEXPORT gzputc(file, c)
}

/* -- see zlib.h -- */
int ZEXPORT gzputs(file, str)
int ZEXPORT gzputs(file, s)
gzFile file;
const char *str;
const char *s;
{
z_size_t len, put;
gz_statep state;
Expand All @@ -366,12 +366,12 @@ int ZEXPORT gzputs(file, str)
return -1;

/* write string */
len = strlen(str);
len = strlen(s);
if ((int)len < 0 || (unsigned)len != len) {
gz_error(state, Z_STREAM_ERROR, "string length does not fit in int");
return -1;
}
put = gz_write(state, str, len);
put = gz_write(state, s, len);
return put < len ? -1 : (int)len;
}

Expand Down
2 changes: 1 addition & 1 deletion trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
local void compress_block OF((deflate_state *s, const ct_data *ltree,
const ct_data *dtree));
local int detect_data_type OF((deflate_state *s));
local unsigned bi_reverse OF((unsigned value, int length));
local unsigned bi_reverse OF((unsigned code, int len));
local void bi_windup OF((deflate_state *s));
local void bi_flush OF((deflate_state *s));

Expand Down
2 changes: 1 addition & 1 deletion zlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
if (crc != original_crc) error();
*/

ZEXTERN uLong ZEXPORT crc32_z OF((uLong adler, const Bytef *buf,
ZEXTERN uLong ZEXPORT crc32_z OF((uLong crc, const Bytef *buf,
z_size_t len));
/*
Same as crc32(), but with a size_t length.
Expand Down

0 comments on commit a577351

Please sign in to comment.