diff options
| author | Joel Klinghed <the_jk@opera.com> | 2015-08-04 16:47:14 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@opera.com> | 2015-08-04 16:47:14 +0200 |
| commit | 1ef9c463f1efc1adfb62e42ab3dd17e8c6394373 (patch) | |
| tree | 8b5d2f3cc4efabe1a1b5374a9d48fd8ef9d20187 /src/dynstr.c | |
| parent | b41fddc7e8f5d41c928c1aef0e75973e33572918 (diff) | |
Remove warnings
Diffstat (limited to 'src/dynstr.c')
| -rw-r--r-- | src/dynstr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dynstr.c b/src/dynstr.c index fa9e9e0..72db26d 100644 --- a/src/dynstr.c +++ b/src/dynstr.c @@ -67,7 +67,6 @@ const char* dynstr_peek(dynstr_t* str) bool dynstr_nappend(dynstr_t* str, const char* add, size_t len) { - assert(str && add); if (str->len + len >= str->size) { size_t ns = MAX(str->size * 2, str->len + len + 1); |
