Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.75 KB | None | 0 0
  1.   CC       inflate.o
  2. inflate.c: In function `inflate_codes':
  3. inflate.c:592: parse error before `unsigned'
  4. inflate.c:593: `delta' undeclared (first use in this function)
  5. inflate.c:593: (Each undeclared identifier is reported only once
  6. inflate.c:593: for each function it appears in.)
  7. make[1]: *** [inflate.o] Error 1
  8.  
  9.  
  10.  
  11.      /* do the copy */
  12.      do {
  13.        n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e);
  14. #if !defined(NOMEMCPY) && !defined(DEBUG)
  15.        unsigned int delta = w > d ? w - d : d - w;
  16.        if (delta >= e)
  17.        {
  18.          memcpy(slide + w, slide + d, e);
  19.          w += e;
  20.          d += e;
  21.        }
  22.        else                      /* do it slow to avoid memcpy() overlap */
  23. #endif /* !NOMEMCPY */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement