Skip to content

Commit

Permalink
Audio: Module adapter: Fix error message typo sinks -> sources
Browse files Browse the repository at this point in the history
This patch fixes a confusing error message typo in module_adapter.c.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
  • Loading branch information
singalsu authored and lgirdwood committed Oct 2, 2023
1 parent f9afd6a commit 405d48d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/module_adapter/module_adapter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ static int module_adapter_audio_stream_type_copy(struct comp_dev *dev)
}
num_input_buffers = i;
if (num_input_buffers > mod->max_sources) {
comp_err(dev, "Invalid number of sinks %d\n", num_input_buffers);
comp_err(dev, "Invalid number of sources %d\n", num_input_buffers);
return -EINVAL;
}

Expand Down

0 comments on commit 405d48d

Please sign in to comment.