diff options
author | hyc <hyc@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-06 21:36:49 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:06:21 +0200 |
commit | d6da056180e25afc32fe925e50c87f21bc6e4ad4 (patch) | |
tree | b23338e164b68b2bed1207b837e675a777cb5e5e | |
parent | 1a1e6e5a690757016019e65eeec9906bd0e73a62 (diff) | |
download | mpv-d6da056180e25afc32fe925e50c87f21bc6e4ad4.tar.bz2 mpv-d6da056180e25afc32fe925e50c87f21bc6e4ad4.tar.xz |
cosmetics: Fix typo in comment
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31341 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | subreader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subreader.c b/subreader.c index f2b52823c2..59209d9d59 100644 --- a/subreader.c +++ b/subreader.c @@ -141,7 +141,7 @@ static subtitle *sub_read_line_sami(stream_t* st, subtitle *current, int utf16) } break; - case 1: /* find (optionnal) "<P", skip other TAGs */ + case 1: /* find (optional) "<P", skip other TAGs */ for (; *s == ' ' || *s == '\t'; s++); /* strip blanks, if any */ if (*s == '\0') break; if (*s != '<') { state = 3; p = text; continue; } /* not a TAG */ |