Commit 127f1f92 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

refs[t:2626] fix some void* type conversions

git-svn-id: file:///svn/toku/tokudb@20389 c7de825b-a66e-492c-adef-691d508d4ae1
parent d009c784
...@@ -1911,7 +1911,7 @@ static int64_t allocate_block (struct dbout *out) ...@@ -1911,7 +1911,7 @@ static int64_t allocate_block (struct dbout *out)
static void putbuf_bytes (struct dbuf *dbuf, const void *bytes, int nbytes) { static void putbuf_bytes (struct dbuf *dbuf, const void *bytes, int nbytes) {
if (dbuf->off + nbytes > dbuf->buflen) { if (dbuf->off + nbytes > dbuf->buflen) {
void *oldbuf = dbuf->buf; unsigned char *oldbuf = dbuf->buf;
int oldbuflen = dbuf->buflen; int oldbuflen = dbuf->buflen;
dbuf->buflen += dbuf->off + nbytes; dbuf->buflen += dbuf->off + nbytes;
dbuf->buflen *= 2; dbuf->buflen *= 2;
...@@ -1944,7 +1944,7 @@ static void putbuf_int64 (struct dbuf *dbuf, unsigned long long v) { ...@@ -1944,7 +1944,7 @@ static void putbuf_int64 (struct dbuf *dbuf, unsigned long long v) {
static void putbuf_int32_at(struct dbuf *dbuf, int off, int v) { static void putbuf_int32_at(struct dbuf *dbuf, int off, int v) {
const int nbytes = 4; const int nbytes = 4;
if (off+nbytes > dbuf->buflen) { if (off+nbytes > dbuf->buflen) {
void *oldbuf = dbuf->buf; unsigned char *oldbuf = dbuf->buf;
int oldbuflen = dbuf->buflen; int oldbuflen = dbuf->buflen;
dbuf->buflen += dbuf->off + nbytes; dbuf->buflen += dbuf->off + nbytes;
dbuf->buflen *= 2; dbuf->buflen *= 2;
......
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