X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fodr_mem.c;h=4309d3da5a0b445f6d5c8f21e16612b9d4568baa;hp=cfd082b554fc11f6fba3eef8c313e4c88cf436eb;hb=240de66672a5b12b1a0deebc18508719dc780828;hpb=a17e9df75e5d75ccdc3f19101fb7b5d0c5a75e46 diff --git a/src/odr_mem.c b/src/odr_mem.c index cfd082b..4309d3d 100644 --- a/src/odr_mem.c +++ b/src/odr_mem.c @@ -96,7 +96,7 @@ int odr_grow_block(ODR b, int min_bytes) return 0; } -int odr_write(ODR o, unsigned char *buf, int bytes) +int odr_write2(ODR o, const char *buf, int bytes) { if (o->pos + bytes >= o->size && odr_grow_block(o, bytes)) { @@ -110,6 +110,11 @@ int odr_write(ODR o, unsigned char *buf, int bytes) return 0; } +int odr_write(ODR o, unsigned char *buf, int bytes) +{ + return odr_write2(o, (char *) buf, bytes); +} + int odr_seek(ODR o, int whence, int offset) { if (whence == ODR_S_CUR)