From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- android/hal-sco.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/hal-sco.c b/android/hal-sco.c index ef04dc5..faed406 100644 --- a/android/hal-sco.c +++ b/android/hal-sco.c @@ -712,7 +712,7 @@ static int sco_open_output_stream(struct audio_hw_device *dev, RESAMPLER_QUALITY_DEFAULT, NULL, &out->resampler); if (ret) { - error("Failed to create resampler (%s)", strerror(ret)); + error("Failed to create resampler (%s)", strerror(-ret)); goto failed; } @@ -1143,7 +1143,7 @@ static int sco_open_input_stream(struct audio_hw_device *dev, RESAMPLER_QUALITY_DEFAULT, NULL, &in->resampler); if (ret) { - error("Failed to create resampler (%s)", strerror(ret)); + error("Failed to create resampler (%s)", strerror(-ret)); goto failed; } -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html