libshared: fix x86_64 build

This commit is contained in:
Jérôme Duval
2014-08-24 21:34:20 +02:00
parent 95e4ca3d00
commit 79c1d45cee
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -99,7 +99,7 @@ BJson::Parse(BMessage& message, BString& JSON)
if (_Parser_ParseConstant(JSON, pos, "true")) {
if (builder.What() == JSON_TYPE_ARRAY)
key.SetToFormat("%zu", builder.CountNames());
key.SetToFormat("%" B_PRIu32, builder.CountNames());
builder.AddBool(key.String(), true);
key = "";
} else
@@ -117,7 +117,7 @@ BJson::Parse(BMessage& message, BString& JSON)
if (_Parser_ParseConstant(JSON, pos, "false")) {
if (builder.What() == JSON_TYPE_ARRAY)
key.SetToFormat("%zu", builder.CountNames());
key.SetToFormat("%" B_PRIu32, builder.CountNames());
builder.AddBool(key.String(), false);
key = "";
} else
@@ -135,7 +135,7 @@ BJson::Parse(BMessage& message, BString& JSON)
if (_Parser_ParseConstant(JSON, pos, "null")) {
if (builder.What() == JSON_TYPE_ARRAY)
key.SetToFormat("%zu", builder.CountNames());
key.SetToFormat("%" B_PRIu32, builder.CountNames());
builder.AddPointer(key.String(), (void*)NULL);
key = "";
} else
+1 -1
View File
@@ -62,7 +62,7 @@ status_t
BMessageBuilder::PushObject(uint32 name)
{
BString nameString;
nameString.SetToFormat("%zu", name);
nameString.SetToFormat("%" B_PRIu32, name);
return PushObject(nameString.String());
}