diff options
author | hansr <hk-git@circlestorm.org> | 2014-10-18 22:49:16 +0200 |
---|---|---|
committer | hansr <hk-git@circlestorm.org> | 2014-10-18 22:49:16 +0200 |
commit | 84002037ee33b2fcf8bd3c69b3a7e3630a04f914 (patch) | |
tree | 88ffbcc6ee04d7fca18103dcac8fd3898e2083fe /infback.c | |
parent | 8999d0a963bd0e5080b6ed56bd073d2f5544e982 (diff) |
Rewrite K&R-style function prototypes to ANSI-C-style.
Only internal functions, no exported functions in this commit.
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -79,8 +79,7 @@ int stream_size; used for threaded applications, since the rewriting of the tables and virgin may not be thread-safe. */ -local void fixedtables(state) -struct inflate_state *state; +local void fixedtables(struct inflate_state *state) { #ifdef BUILDFIXED static int virgin = 1; |