Commit 950b199a authored by Rich Prohaska's avatar Rich Prohaska

32 bit port

git-svn-id: file:///svn/tokudb@3494 c7de825b-a66e-492c-adef-691d508d4ae1
parent 85905624
......@@ -200,7 +200,7 @@ void toku_serialize_brtnode_to (int fd, DISKOFF off, BRTNODE node) {
{
ssize_t r=pwrite(fd, w.buf, (size_t)node->nodesize, off); // write the whole buffer, including the zeros
if (r<0) printf("r=%ld errno=%d\n", (long)r, errno);
assert(r==node->nodesize);
assert(r==(ssize_t)node->nodesize);
}
if (calculated_size!=w.ndone)
......
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