From 6c2a6f092c17c9337093ca1163fe0f7314b011ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 4 Jul 2014 14:39:03 +0200 Subject: [PATCH] clipboard: Hopefully fix 64bit build Untested --- src/bin/clipboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/clipboard.cpp b/src/bin/clipboard.cpp index f73158066a..87f15ca68d 100644 --- a/src/bin/clipboard.cpp +++ b/src/bin/clipboard.cpp @@ -308,7 +308,7 @@ ClipboardApp::Print(bool debug) clip->PrintToStream(); } else { const char * textBuffer; - int32 textLength; + ssize_t textLength; clip->FindData("text/plain", B_MIME_TYPE, (const void **)&textBuffer, &textLength); if (textBuffer != NULL && textLength > 0) {