Commit e017a696 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix gcc 4.1.2 build on linux

git-svn-id: file:///svn/toku/tokudb@20850 c7de825b-a66e-492c-adef-691d508d4ae1
parent 53b88b1f
......@@ -429,10 +429,6 @@ decompress_work_init_11(struct decompress_work_11 *dw,
// decompress one block
static void
decompress_block(struct decompress_work_11 *dw) {
if (0) {
toku_pthread_t self = toku_pthread_self();
printf("%s:%d %x %p\n", __FUNCTION__, __LINE__, *(int*) &self, dw);
}
uLongf destlen = dw->uncompress_size;
int r = uncompress(dw->uncompress_ptr, &destlen, dw->compress_ptr, dw->compress_size);
assert(destlen == dw->uncompress_size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment