diff options
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; |