summaryrefslogtreecommitdiff
path: root/src/ecommon
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-28 03:56:12 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-28 03:56:12 +0300
commit447787839e492410611ebe16d01fd5e1ae52e045 (patch)
tree0df52644e225f65e2d23f358dc4db5906c1595be /src/ecommon
parentd37fe74804b94065259703509b4b3dc3f53c30a5 (diff)
downloadevol-hercules-447787839e492410611ebe16d01fd5e1ae52e045.tar.gz
evol-hercules-447787839e492410611ebe16d01fd5e1ae52e045.tar.bz2
evol-hercules-447787839e492410611ebe16d01fd5e1ae52e045.tar.xz
evol-hercules-447787839e492410611ebe16d01fd5e1ae52e045.zip
Fix different warnings.
Diffstat (limited to 'src/ecommon')
-rw-r--r--src/ecommon/utils/strutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecommon/utils/strutil.c b/src/ecommon/utils/strutil.c
index 7862777..544bbaf 100644
--- a/src/ecommon/utils/strutil.c
+++ b/src/ecommon/utils/strutil.c
@@ -28,7 +28,7 @@ struct strutil_data *strutil_split(const char *str,
VECTOR_ENSURE(data->parts, len + 1, 1);
data->len = sv->split(data->str,
- strlen(data->str),
+ (int)strlen(data->str),
0,
separator,
VECTOR_DATA(data->parts),