diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/copynpaste.cpp | 2 | ||||
-rw-r--r-- | src/utils/paths.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index 1d2289600..b5dc63449 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -457,7 +457,7 @@ bool runxsel(std::string& text, const char *p1, const char *p2) // parent close(fd[0]); - const int len = strlen(text.c_str()); + const int len = static_cast<int>(strlen(text.c_str())); if (write(fd[1], text.c_str(), len) != len) { close(fd[1]); diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp index 1a2ec1b5c..081b642c0 100644 --- a/src/utils/paths.cpp +++ b/src/utils/paths.cpp @@ -118,7 +118,7 @@ std::string getSelfName() std::string getSelfName() { char buf[257]; - int sz = readlink("/proc/self/exe", buf, 256); + ssize_t sz = readlink("/proc/self/exe", buf, 256); if (sz > 0 && sz < 256) { buf[sz] = 0; |