cpp: fixes some implicit cast warnings

This commit is contained in:
FURUHASHI Sadayuki
2011-02-23 23:48:26 +09:00
parent d1264a1289
commit 67ab510b5d
4 changed files with 7 additions and 7 deletions

View File

@@ -164,7 +164,7 @@ void msgpack_object_print(FILE* out, msgpack_object o)
default:
// FIXME
fprintf(out, "#<UNKNOWN %hu %"PRIu64">", o.type, o.via.u64);
fprintf(out, "#<UNKNOWN %i %"PRIu64">", o.type, o.via.u64);
}
}