summaryrefslogtreecommitdiff
path: root/devel/php5-msgpack/files/patch-msgpack_pack.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/php5-msgpack/files/patch-msgpack_pack.c')
-rw-r--r--devel/php5-msgpack/files/patch-msgpack_pack.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/devel/php5-msgpack/files/patch-msgpack_pack.c b/devel/php5-msgpack/files/patch-msgpack_pack.c
deleted file mode 100644
index 561178779007..000000000000
--- a/devel/php5-msgpack/files/patch-msgpack_pack.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./msgpack_pack.c.orig 2011-10-31 10:07:38.000000000 +0400
-+++ ./msgpack_pack.c 2012-05-28 15:06:00.764503031 +0400
-@@ -439,7 +439,7 @@
- msgpack_pack_nil(buf);
- msgpack_pack_long(buf, MSGPACK_SERIALIZE_TYPE_CUSTOM_OBJECT);
-
-- msgpack_serialize_string(buf, ce->name, ce->name_length);
-+ msgpack_serialize_string(buf, (char *)ce->name, ce->name_length);
- msgpack_pack_raw(buf, serialized_length);
- msgpack_pack_raw_body(buf, serialized_data, serialized_length);
- }