From d154bfb517c851283feee5a817cbe12bd8e7e663 Mon Sep 17 00:00:00 2001 From: Jessica Hamilton Date: Fri, 25 Apr 2014 08:46:45 +1200 Subject: [PATCH] Fix 64-bit build. Thanks umccullough! --- src/apps/haikudepot/WebAppInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/haikudepot/WebAppInterface.cpp b/src/apps/haikudepot/WebAppInterface.cpp index f45cadc145..b2c937d0e1 100644 --- a/src/apps/haikudepot/WebAppInterface.cpp +++ b/src/apps/haikudepot/WebAppInterface.cpp @@ -303,7 +303,7 @@ WebAppInterface::RetrievePackageInfo(const BString& packageName, if (statusCode == 200) return B_OK; - printf("Response code: %ld\n", statusCode); + printf("Response code: %" B_PRId32 "\n", statusCode); return B_ERROR; }