summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
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;