Differences From Artifact [b0d60daf0c]:
- File src/gzip.c — part of check-in [c693a3365c] at 2014-08-23 06:08:21 on branch optionalMiniz — Add miniz as a compile-time feature, leaving zlib as the default compression library. All makefiles should build. The DMC and PellesCGMake makefiles are not yet supported with miniz. Also, when using miniz, OpenSSL support for zlib is disabled in the MinGW makefile. (user: mistachkin size: 3825) [more...]
To Artifact [1713ec55df]:
- File src/gzip.c — part of check-in [fe1332ca2c] at 2017-04-23 13:50:30 on branch trunk — gzip.c:70:13: warning: implicit conversion from 'int' to 'char' changes value from 255 to -1 [-Wconstant-conversion] aHdr[9] = 255; ~ ^~~ (user: jan.nijtmans size: 3824) [more...]
| ︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + |
aHdr[2] = 8;
aHdr[3] = 0;
if( now==-1 ){
now = db_int64(0, "SELECT (julianday('now') - 2440587.5)*86400.0");
}
put32(&aHdr[4], now&0xffffffff);
aHdr[8] = 2;
|
| ︙ |