summaryrefslogtreecommitdiff
path: root/c/unpack_inline.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/unpack_inline.c')
-rw-r--r--c/unpack_inline.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/c/unpack_inline.c b/c/unpack_inline.c
index 3525468..d758d3e 100644
--- a/c/unpack_inline.c
+++ b/c/unpack_inline.c
@@ -71,11 +71,8 @@ static inline void* msgpack_unpack_map_start(msgpack_unpack_t* x, unsigned int n
static inline void msgpack_unpack_map_item(msgpack_unpack_t* x, void* c, void* k, void* v)
{ x->callback.unpack_map_item(x->data, c, k, v); }
-static inline void* msgpack_unpack_string(msgpack_unpack_t* x, const void* b, size_t l)
-{ return x->callback.unpack_string(x->data, b, l); }
-
-static inline void* msgpack_unpack_raw(msgpack_unpack_t* x, const void* b, size_t l)
-{ return x->callback.unpack_raw(x->data, b, l); }
+static inline void* msgpack_unpack_raw(msgpack_unpack_t* x, const void* b, const void* p, size_t l)
+{ return x->callback.unpack_raw(x->data, b, p, l); }
#include "msgpack/unpack/inline_impl.h"