Fix 64-bit build. Thanks umccullough!

This commit is contained in:
Jessica Hamilton
2014-04-25 08:46:45 +12:00
parent 60370b9a6c
commit d154bfb517
+1 -1
View File
@@ -303,7 +303,7 @@ WebAppInterface::RetrievePackageInfo(const BString& packageName,
if (statusCode == 200) if (statusCode == 200)
return B_OK; return B_OK;
printf("Response code: %ld\n", statusCode); printf("Response code: %" B_PRId32 "\n", statusCode);
return B_ERROR; return B_ERROR;
} }