summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index acd191e..920db4c 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -119,7 +119,7 @@ strndup(const char *s, size_t n)
char *p = malloc(len + 1);
if (!p)
return NULL;
- memcpy(p, str, len);
+ memcpy(p, s, len);
p[len] = '\0';
return p;
}