diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 18:54:20 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 18:54:20 +0200 |
commit | abae9eefc47851cb1de44d942f494e2ea7fbb950 (patch) | |
tree | d4b197adb7aca7db9e21d6009e3e5688a2d24be6 /zutil.c | |
parent | 57ddf20c29349ac7524185394e3945fa9bdb1874 (diff) |
Convert remaining K&R function declarations to ANSI-C declarations.
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -101,8 +101,7 @@ void ZLIB_INTERNAL z_error (m) /* exported to allow conversion of error code to string for compress() and * uncompress() */ -const char * ZEXPORT zError(err) - int err; +const char * ZEXPORT zError(int err) { return ERR_MSG(err); } |