Ignore:
Timestamp:
Feb 1, 2007, 11:20:48 PM (16 years ago)
Author:
Sam Hocevar
Message:
  • Fixed a few signed/unsigned confusions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zzuf/trunk/src/fuzz.c

    r1730 r1732  
    4545
    4646/* Per-offset byte protection */
    47 static unsigned int *ranges = NULL;
    48 static unsigned int ranges_static[512];
     47static int *ranges = NULL;
     48static int ranges_static[512];
    4949
    5050/* Per-value byte protection */
     
    110110}
    111111
    112 void _zz_fuzz(int fd, volatile uint8_t *buf, uint64_t len)
     112void _zz_fuzz(int fd, volatile uint8_t *buf, int64_t len)
    113113{
    114114    int64_t start, stop;
Note: See TracChangeset for help on using the changeset viewer.