summaryrefslogtreecommitdiff
path: root/src/utils/copynpaste.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-16 00:27:51 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-16 00:32:49 +0300
commit2ed0917b4ee942ff55639500f846ae9cb4f48b90 (patch)
tree431158e61d703a747115088e1b084651c923e0dd /src/utils/copynpaste.cpp
parent875ece90ff94c4cf295b53c8bb37d9238ece38e9 (diff)
downloadplus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.gz
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.bz2
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.xz
plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.zip
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/utils/copynpaste.cpp')
-rw-r--r--src/utils/copynpaste.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp
index 2b7acc0e1..5d7c32e29 100644
--- a/src/utils/copynpaste.cpp
+++ b/src/utils/copynpaste.cpp
@@ -196,7 +196,8 @@ bool getDataFromPasteboard(PasteboardRef inPasteboard,
for (short dataIndex = 0; dataIndex <= flavorDataSize;
dataIndex ++)
{
- char byte = *(CFDataGetBytePtr(flavorData) + dataIndex);
+ signed char byte = *(CFDataGetBytePtr(
+ flavorData) + dataIndex);
flavorText[dataIndex] = byte;
}