summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-18 01:51:36 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-18 01:51:36 +0300
commitf0e95132f27ceb901fbd779fafc798a1f67a06a6 (patch)
tree52ee9ab21f4e01c2c8ae70b86841b0138349645d /src/utils
parent7e0a97d2521b9ce57003176e82a0b5564aa003c2 (diff)
downloadManaVerse-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.gz
ManaVerse-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.bz2
ManaVerse-f0e95132f27ceb901fbd779fafc798a1f67a06a6.tar.xz
ManaVerse-f0e95132f27ceb901fbd779fafc798a1f67a06a6.zip
Another warning fixes.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/copynpaste.cpp2
-rw-r--r--src/utils/paths.cpp2
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;