]> code.delx.au - pulseaudio/commitdiff
core: fix typo in logging
authorPeter Meerwald <p.meerwald@bct-electronic.com>
Mon, 19 Dec 2011 11:28:43 +0000 (12:28 +0100)
committerArun Raghavan <arun.raghavan@collabora.co.uk>
Tue, 20 Dec 2011 04:52:01 +0000 (10:22 +0530)
src/pulsecore/sink-input.c
src/pulsecore/source-output.c

index 23b6b4b378760db7e51f8351d89a2222f7916759..93caa8fa871a36802beb351f20c30b13895bf93f 100644 (file)
@@ -2072,7 +2072,7 @@ int pa_sink_input_update_rate(pa_sink_input *i) {
 
     i->actual_resample_method = new_resampler ? pa_resampler_get_method(new_resampler) : PA_RESAMPLER_INVALID;
 
-    pa_log_debug("Updated resmpler for sink input %d", i->index);
+    pa_log_debug("Updated resampler for sink input %d", i->index);
 
     return 0;
 }
index 049046ab7367c1decbba46ea27010e120d8e5890..8a35ab0f79ff17ec26210146e6e63e400f8e3775 100644 (file)
@@ -1664,7 +1664,7 @@ int pa_source_output_update_rate(pa_source_output *o) {
 
     o->actual_resample_method = new_resampler ? pa_resampler_get_method(new_resampler) : PA_RESAMPLER_INVALID;
 
-    pa_log_debug("Updated resmpler for source output %d", o->index);
+    pa_log_debug("Updated resampler for source output %d", o->index);
 
     return 0;
 }