mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-16 18:56:54 +02:00
Adusted coding style.
This commit is contained in:
@@ -116,7 +116,7 @@ int msgpack_pack_object(msgpack_packer* pk, msgpack_object d)
|
||||
static void msgpack_object_bin_print(FILE* out, const char *ptr, size_t size)
|
||||
{
|
||||
size_t i;
|
||||
for (i = 0; i < size; i++) {
|
||||
for (i = 0; i < size; ++i) {
|
||||
if (ptr[i] == '"') {
|
||||
fputs("\\\"", out);
|
||||
} else if (isprint(ptr[i])) {
|
||||
|
Reference in New Issue
Block a user