diff options
author | Björn Gustavsson <[email protected]> | 2014-02-06 15:58:11 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-02-06 15:58:11 +0100 |
commit | e3b9d03e022a31395d623c14b57686dbbf84dfcf (patch) | |
tree | 5756bc81168af1e46e9f46998e91850bf490185e | |
parent | 63a6612adebb5f2ca2271e808009bb5aeae3ee58 (diff) | |
parent | 21f2d57e5f7919d468fe89e38c52f978e15c1dfc (diff) | |
download | otp-e3b9d03e022a31395d623c14b57686dbbf84dfcf.tar.gz otp-e3b9d03e022a31395d623c14b57686dbbf84dfcf.tar.bz2 otp-e3b9d03e022a31395d623c14b57686dbbf84dfcf.zip |
Merge branch 'bjorn/erts/zlib-1.2.8/OTP-11669'
* bjorn/erts/zlib-1.2.8/OTP-11669:
gzio.c: Remove unnecessary usage of the OF() macro
-rw-r--r-- | erts/emulator/drivers/common/gzio.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/erts/emulator/drivers/common/gzio.c b/erts/emulator/drivers/common/gzio.c index 653f3954b1..8ec2c3f762 100644 --- a/erts/emulator/drivers/common/gzio.c +++ b/erts/emulator/drivers/common/gzio.c @@ -73,15 +73,15 @@ typedef struct gz_stream { int transparent; /* 1 if input file is not a .gz file */ char mode; /* 'w' or 'r' */ int position; /* Position (for seek) */ - int (*destroy)OF((struct gz_stream*)); /* Function to destroy + int (*destroy)(struct gz_stream*); /* Function to destroy * this structure. */ } gz_stream; -local ErtsGzFile gz_open OF((const char *path, const char *mode)); -local int get_byte OF((gz_stream *s)); -local void check_header OF((gz_stream *s)); -local int destroy OF((gz_stream *s)); -local uLong getLong OF((gz_stream *s)); +local ErtsGzFile gz_open (const char *path, const char *mode); +local int get_byte (gz_stream *s); +local void check_header (gz_stream *s); +local int destroy (gz_stream *s); +local uLong getLong (gz_stream *s); #ifdef UNIX /* |