diff options
author | Nicolas F <ovdev@fratti.ch> | 2017-10-23 10:53:28 +0200 |
---|---|---|
committer | Martin Herkt <652892+lachs0r@users.noreply.github.com> | 2017-12-03 21:24:18 +0100 |
commit | 744b67d9e554c1aea78f3fd3c92adc5bd79339ae (patch) | |
tree | b75378c2bea712070a0619be43e92ad70501347c /demux | |
parent | 1a9fb7937a1a4d32065a144a2dc960bba04ddf10 (diff) |
Fix various typos in log messages
Diffstat (limited to 'demux')
-rw-r--r-- | demux/ebml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/ebml.c b/demux/ebml.c index d2a8629136..a64c1dd99c 100644 --- a/demux/ebml.c +++ b/demux/ebml.c @@ -478,8 +478,8 @@ static void ebml_parse_element(struct ebml_parse_ctx *ctx, void *target, bool multiple = fd->multiple; int *countptr = (int *) (s + fd->count_offset); if (*countptr >= num_elems[field_idx]) { - // Shouldn't happen with on any sane file without bugs - MP_ERR(ctx, "Too many subelems?\n"); + // Shouldn't happen on any sane file without bugs + MP_ERR(ctx, "Too many subelements.\n"); ctx->has_errors = true; data += length; continue; |