Skip to content

Commit

Permalink
[FOLD]
Browse files Browse the repository at this point in the history
  • Loading branch information
vinniefalco committed Sep 29, 2016
1 parent 809f738 commit 0f7cb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/zlib/deflate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ const char deflate_copyright[] =
/* ===========================================================================
* Function prototypes.
*/
typedef enum {
enum block_state {
need_more, /* block not completed, need more input or more output */
block_done, /* block flush performed */
finish_started, /* finish started, need only more output at next deflate */
finish_done /* finish done, accept no more input or output */
} block_state;
};

typedef block_state (*compress_func) OF((deflate_state *s, int flush));
/* Compression function. Returns the block state after the call. */
Expand Down

0 comments on commit 0f7cb1f

Please sign in to comment.