]> git.sur5r.net Git - bacula/bacula/commitdiff
Eliminate compiler warning
authorKern Sibbald <kern@sibbald.com>
Thu, 15 Oct 2009 15:18:07 +0000 (17:18 +0200)
committerKern Sibbald <kern@sibbald.com>
Thu, 15 Oct 2009 15:18:34 +0000 (17:18 +0200)
bacula/src/stored/bextract.c

index 5786a4c133d26b45c19a1749bc9013d760a47759..b96f7dfd663117bfdc22f0b864edb87427105293 100644 (file)
@@ -443,7 +443,7 @@ static bool record_cb(DCR *dcr, DEV_RECORD *rec)
                                  (const Byte *)wbuf, (uLong)wsize)) == Z_BUF_ERROR)
          {
             /* The buffer size is too small, try with a bigger one */
-            compress_len = compress_len + compress_len >> 1;
+            compress_len = compress_len + (compress_len >> 1);
             compress_buf = check_pool_memory_size(compress_buf,
                                                   compress_len);
          }