summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYomi0 <abyomi0@gmail.com>2014-05-22 09:49:21 -0400
committerwm4 <wm4@nowhere>2014-05-24 16:54:54 +0200
commit44f62ff6f3f72d6889fb2569215d2bb8a1a3ec17 (patch)
tree2230e4b2ff4522d21f6f9dad47b8b6c4daeb703a
parent55c3055784bed2ba7fff5131506f7f95b922fa46 (diff)
downloadmpv-44f62ff6f3f72d6889fb2569215d2bb8a1a3ec17.tar.bz2
mpv-44f62ff6f3f72d6889fb2569215d2bb8a1a3ec17.tar.xz
tl_mpv_edl: correct misspelling on line 233
Closes #783 Signed-off-by: wm4 <wm4@nowhere>
-rw-r--r--player/timeline/tl_mpv_edl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/timeline/tl_mpv_edl.c b/player/timeline/tl_mpv_edl.c
index 2cc6050d08..e692df3238 100644
--- a/player/timeline/tl_mpv_edl.c
+++ b/player/timeline/tl_mpv_edl.c
@@ -201,7 +201,7 @@ static void build_timeline(struct MPContext *mpctx, struct tl_parts *parts)
part->filename);
}
- // Unkown length => use rest of the file. If duration is unknown, make
+ // Unknown length => use rest of the file. If duration is unknown, make
// something up.
if (part->length < 0)
part->length = (len < 0 ? 1 : len) - part->offset;