summaryrefslogtreecommitdiff
path: root/src/strutil.c
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2015-08-04 16:47:14 +0200
committerJoel Klinghed <the_jk@opera.com>2015-08-04 16:47:14 +0200
commit1ef9c463f1efc1adfb62e42ab3dd17e8c6394373 (patch)
tree8b5d2f3cc4efabe1a1b5374a9d48fd8ef9d20187 /src/strutil.c
parentb41fddc7e8f5d41c928c1aef0e75973e33572918 (diff)
Remove warnings
Diffstat (limited to 'src/strutil.c')
-rw-r--r--src/strutil.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/strutil.c b/src/strutil.c
index 7d436ec..4502b83 100644
--- a/src/strutil.c
+++ b/src/strutil.c
@@ -83,7 +83,6 @@ char** split_len(const char* start, const char* end, char delim)
{
char** ret;
size_t count = 0, size = 2;
- assert(start && end);
assert(start <= end);
ret = malloc((size + 1) * sizeof(char*));
if (ret)