Fix x86_64 build. Use B_PRId32 instead of ld.

Suggested by diver and augiedoggie. Thanks!
This commit is contained in:
Matt Madia 2013-08-17 17:28:05 -04:00
parent bbadab8989
commit c58fcc9888
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ EndpointInfo::EndpointInfo(int32 id)
if (roster != NULL) {
BMidiEndpoint* endpoint = roster->FindEndpoint(id);
if (endpoint != NULL) {
printf("endpoint %ld = %p\n", id, endpoint);
printf("endpoint %" B_PRId32 " = %p\n", id, endpoint);
BMessage msg;
if (endpoint->GetProperties(&msg) == B_OK) {
fIcon = CreateIcon(&msg, DISPLAY_ICON_SIZE);