summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-20 18:13:05 +0100
committerwm4 <wm4@nowhere>2013-12-01 19:28:05 +0100
commite70580df3061321d1862a5a4ed17dabed157b06f (patch)
tree9bb05f2eb0fc72a097ae2a573171e465e01938b5
parent9eaba0c176a2b9f6544a897b451ff16d058e90d8 (diff)
downloadmpv-e70580df3061321d1862a5a4ed17dabed157b06f.tar.bz2
mpv-e70580df3061321d1862a5a4ed17dabed157b06f.tar.xz
ta: fix typo in comment
-rw-r--r--ta/ta_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ta/ta_utils.c b/ta/ta_utils.c
index 19ab77a733..4d1e73fab6 100644
--- a/ta/ta_utils.c
+++ b/ta/ta_utils.c
@@ -241,7 +241,7 @@ bool ta_vasprintf_append(char **str, const char *fmt, va_list ap)
/* Append the formatted string at the end of the allocation of *str. It
* overwrites the last byte of the allocation too (which is assumed to be the
- * '\0' terminating the sttring). Compared to ta_asprintf_append(), this is
+ * '\0' terminating the string). Compared to ta_asprintf_append(), this is
* useful if you know that the string ends with the allocation, so that the
* extra strlen() can be avoided for better performance.
* Returns false on OOM or snprintf() errors, with *str left untouched.