[haiku-commits] haiku: hrev47467 - src/bin

  • From: revol@xxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 4 Jul 2014 14:39:39 +0200 (CEST)

hrev47467 adds 1 changeset to branch 'master'
old head: 9220bcf1f6d7aba809d790afc61b582a2d7e9f7b
new head: 6c2a6f092c17c9337093ca1163fe0f7314b011ac
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=6c2a6f0+%5E9220bcf

----------------------------------------------------------------------------

6c2a6f0: clipboard: Hopefully fix 64bit build
  
  Untested

                                          [ François Revol <revol@xxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev47467
Commit:      6c2a6f092c17c9337093ca1163fe0f7314b011ac
URL:         http://cgit.haiku-os.org/haiku/commit/?id=6c2a6f0
Author:      François Revol <revol@xxxxxxx>
Date:        Fri Jul  4 12:39:03 2014 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/bin/clipboard.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/bin/clipboard.cpp b/src/bin/clipboard.cpp
index f731580..87f15ca 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) {


Other related posts:

  • » [haiku-commits] haiku: hrev47467 - src/bin - revol