~ubuntu-branches/ubuntu/saucy/clamav/saucy

« back to all changes in this revision

Viewing changes to libclamav/nsis/bzlib_private.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2007-12-18 15:18:53 UTC
  • mfrom: (0.25.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218151853-ag6bdjbq6budh353
Tags: 0.92~dfsg-0build1
Fake sync to get the new clamav into the NEW queue

Show diffs side-by-side

added added

removed removed

Lines of Context:
422
422
/*-- Macros for decompression. --*/
423
423
 
424
424
#define BZ_GET_FAST(cccc)                     \
 
425
    if (s->tPos >= s->blockSize100k * 100000) return True; \
425
426
    s->tPos = s->tt[s->tPos];                 \
426
427
    cccc = (UChar)(s->tPos & 0xff);           \
427
428
    s->tPos >>= 8;
428
429
 
429
430
#define BZ_GET_FAST_C(cccc)                   \
 
431
    if (c_tPos >= s->blockSize100k * 100000) return True; \
430
432
    c_tPos = c_tt[c_tPos];                    \
431
433
    cccc = (UChar)(c_tPos & 0xff);            \
432
434
    c_tPos >>= 8;