Skip to content

Commit

Permalink
Fix compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed May 5, 2013
1 parent 0df113a commit bbbb0c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/stored/bextract.c
Expand Up @@ -401,7 +401,8 @@ static bool decompress_with_lzo(DEV_RECORD *rec)
{
lzo_uint compress_len;
const unsigned char *cbuf;
int status, real_compress_len;
int real_compress_len;
int status = LZO_E_ERROR;

compress_len = compress_buf_size;
cbuf = (const unsigned char*) wbuf + sizeof(comp_stream_header);
Expand Down

0 comments on commit bbbb0c1

Please sign in to comment.