summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-14 19:17:03 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-14 19:17:03 +0300
commitec8845e596facf709d2a0ac19f518452b8382260 (patch)
tree0165d4965a103ed289c3ad202aa643605d688046 /src/utils
parent928103c5d9c716dbfe0ba2c8ea13b1426b3e768c (diff)
downloadplus-ec8845e596facf709d2a0ac19f518452b8382260.tar.gz
plus-ec8845e596facf709d2a0ac19f518452b8382260.tar.bz2
plus-ec8845e596facf709d2a0ac19f518452b8382260.tar.xz
plus-ec8845e596facf709d2a0ac19f518452b8382260.zip
Fix code style.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/copynpaste.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp
index 2a898e9c5..10b43e811 100644
--- a/src/utils/copynpaste.cpp
+++ b/src/utils/copynpaste.cpp
@@ -470,8 +470,8 @@ static bool runxsel(const std::string &text, const char *p1, const char *p2)
// parent
close(fd[0]);
- const int len = text.length();
- if (write(fd[1], text.c_str(), len) != len)
+ const size_t len = text.length();
+ if (write(fd[1], text.c_str(), len) != static_cast<ssize_t>(len))
{
close(fd[1]);
return false;