diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-14 19:17:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-14 19:17:03 +0300 |
commit | ec8845e596facf709d2a0ac19f518452b8382260 (patch) | |
tree | 0165d4965a103ed289c3ad202aa643605d688046 /src/utils/copynpaste.cpp | |
parent | 928103c5d9c716dbfe0ba2c8ea13b1426b3e768c (diff) | |
download | mv-ec8845e596facf709d2a0ac19f518452b8382260.tar.gz mv-ec8845e596facf709d2a0ac19f518452b8382260.tar.bz2 mv-ec8845e596facf709d2a0ac19f518452b8382260.tar.xz mv-ec8845e596facf709d2a0ac19f518452b8382260.zip |
Fix code style.
Diffstat (limited to 'src/utils/copynpaste.cpp')
-rw-r--r-- | src/utils/copynpaste.cpp | 4 |
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; |