From 995a6af78734820007eb8a1ae3b543fd9d9636e1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 10 Nov 2014 19:33:36 +0100 Subject: af_format: remove redundant message prefixes --- audio/filter/af_format.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/filter/af_format.c b/audio/filter/af_format.c index 9183259bd9..14b0d34d42 100644 --- a/audio/filter/af_format.c +++ b/audio/filter/af_format.c @@ -80,12 +80,12 @@ static int control(struct af_instance *af, int cmd, void *arg) force_out_params(af, out); if (in->nch != out->nch || in->bps != out->bps) { - MP_ERR(af, "[af_format] Forced input/output formats are incompatible.\n"); + MP_ERR(af, "Forced input/output formats are incompatible.\n"); return AF_ERROR; } if (priv->fail) { - MP_ERR(af, "[af_format] Failing on purpose.\n"); + MP_ERR(af, "Failing on purpose.\n"); return AF_ERROR; } -- cgit v1.2.3