summaryrefslogtreecommitdiff
path: root/python/msgpack/pack.h
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-24 01:38:48 +0900
committerNaoki INADA <inada-n@eagle>2009-06-24 01:38:48 +0900
commit3fd28d07928c51cb563f35d9dddb0c7867ac9875 (patch)
treef439004ae86425480f3d60812a5588a54e4d35d5 /python/msgpack/pack.h
parentdd53b141ef6d2495d0cc14c8949180a74ae3caf6 (diff)
downloadmsgpack-python-3fd28d07928c51cb563f35d9dddb0c7867ac9875.tar.gz
Remove duplicated values.
Diffstat (limited to 'python/msgpack/pack.h')
-rw-r--r--python/msgpack/pack.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/msgpack/pack.h b/python/msgpack/pack.h
index 544950b..9bd6b68 100644
--- a/python/msgpack/pack.h
+++ b/python/msgpack/pack.h
@@ -18,7 +18,7 @@
#include <stddef.h>
#include <stdlib.h>
-#include "msgpack/pack_define.h"
+#include "pack_define.h"
#ifdef __cplusplus
extern "C" {
@@ -82,7 +82,7 @@ static inline int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_
#define msgpack_pack_append_buffer(user, buf, len) \
return (*(user)->callback)((user)->data, (const char*)buf, len)
-#include "msgpack/pack_template.h"
+#include "pack_template.h"
static inline void msgpack_packer_init(msgpack_packer* pk, void* data, msgpack_packer_write callback)
{