summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/audio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c
index 954dd72..d1b19fd 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -1030,7 +1030,8 @@ static int start_source(struct autx *tx, struct audio *a)
&prm, tx->device,
ausrc_read_handler, ausrc_error_handler, a);
if (err) {
- warning("audio: start_source failed: %m\n", err);
+ warning("audio: start_source failed (%s.%s): %m\n",
+ a->cfg.src_mod, tx->device, err);
return err;
}