summaryrefslogtreecommitdiffstats
path: root/ta
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-20 18:13:05 +0100
committerwm4 <wm4@nowhere>2013-11-20 18:13:05 +0100
commit801ff8319f1573f5cf0324d6de4c323383ae429e (patch)
tree87fff980ec8cec5c863c19f0ca258cf9d6a03160 /ta
parent31fc48f0a8e95ff5acc6db1a7f47e76fb7cf7717 (diff)
downloadmpv-801ff8319f1573f5cf0324d6de4c323383ae429e.tar.bz2
mpv-801ff8319f1573f5cf0324d6de4c323383ae429e.tar.xz
ta: fix typo in comment
Diffstat (limited to 'ta')
-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.