Commit 908ad92c authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix an obsolete assert. closes #1413

git-svn-id: file:///svn/toku/tokudb@9060 c7de825b-a66e-492c-adef-691d508d4ae1
parent 1f796663
......@@ -978,7 +978,7 @@ int toku_serialize_fifo_at (int fd, toku_off_t freeoff, FIFO fifo) {
unlock_for_pwrite();
return r;
}
assert(r==(ssize_t)size);
assert((ssize_t)size==nwrote);
freeoff+=size;
toku_free(buf);
});
......
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