Changeset 1730 for zzuf/trunk/src/fuzz.c
- Timestamp:
- Feb 1, 2007, 7:19:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/fuzz.c
r1720 r1730 112 112 void _zz_fuzz(int fd, volatile uint8_t *buf, uint64_t len) 113 113 { 114 uint64_t start, stop; 114 int64_t start, stop; 115 int64_t pos = _zz_getpos(fd); 115 116 struct fuzz *fuzz; 116 117 volatile uint8_t *aligned_buf; 117 unsigned long int pos = _zz_getpos(fd); 118 unsigned int i, j, todo; 118 int i, j, todo; 119 119 120 120 #if 0 121 debug("fuzz(%i, %lli@%l i)", fd, (unsignedlong long int)len,122 ( unsignedlong int)pos);121 debug("fuzz(%i, %lli@%lli)", fd, (long long int)len, 122 (long long int)pos); 123 123 #endif 124 124 … … 160 160 for(j = start; j < stop; j++) 161 161 { 162 unsignedint *r;162 int *r; 163 163 uint8_t byte, fuzzbyte; 164 164
Note: See TracChangeset
for help on using the changeset viewer.