summaryrefslogtreecommitdiff
path: root/utils/url.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/url.c')
-rw-r--r--utils/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/url.c b/utils/url.c
index 50059a108..d1e9ce2a7 100644
--- a/utils/url.c
+++ b/utils/url.c
@@ -97,7 +97,7 @@ nserror url_unescape(const char *str, size_t length,
new_len = res_pos - result;
if (new_len != length) {
- /* Shrink wrap the allocaiton around the string */
+ /* Shrink wrap the allocation around the string */
char *tmp = realloc(result, new_len + 1);
if (tmp != NULL) {
result = tmp;