Skip to content

Commit

Permalink
Fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent c8ce10e commit b74d3df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filed/backup.h
Expand Up @@ -44,8 +44,8 @@ struct b_ctx {
/*
* Compression data.
*/
const char *cbuf; /* Compression buffer */
char *cbuf2; /* Compression buffer when using generic comp_stream_header */
const unsigned char *cbuf; /* Compression buffer */
unsigned char *cbuf2; /* Compression buffer when using generic comp_stream_header */
uint32_t compress_len; /* Actual length after compression */
uint32_t max_compress_len; /* Maximum size that will fit into compression buffer */
comp_stream_header ch; /* Compression Stream Header with info about compression used */
Expand Down

0 comments on commit b74d3df

Please sign in to comment.