Commit baba8cd7 authored by lahiker42@gmail.com's avatar lahiker42@gmail.com

Bug fix (srobbins, see Issue 68 Comment 1)


git-svn-id: https://protobuf-c.googlecode.com/svn/trunk@321 00440858-1255-0410-a3e6-75ea37f81c3a
parent b8416282
......@@ -5,6 +5,8 @@
- switch to New BSD license.
- add protobuf_c_rpc_server_configure_threading()
- bugs in dsk-dispatch (Issue #65 for one)
- bug in packing 64-bit versions on some platforms
(srobbins99: Issue #68 Comment 1)
0.15:
- make protobuf_c_message_init() into a function (Issue #49, daveb)
......
......@@ -654,7 +654,7 @@ fixed64_pack (uint64_t value, void *out)
memcpy (out, &value, 8);
#else
fixed32_pack (value, out);
fixed32_pack (value>>32, out+4);
fixed32_pack (value>>32, ((char*)out)+4);
#endif
return 8;
}
......
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