From 39867cb4df4bdc929144953898c60b479f3901cc Mon Sep 17 00:00:00 2001 From: Liang Guo Date: Mon, 25 Jul 2011 01:52:23 +0800 Subject: [PATCH] Fix typo: treshold -> threshold --- client/x11/record.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/x11/record.cpp b/client/x11/record.cpp index d799e5ae..017a94db 100644 --- a/client/x11/record.cpp +++ b/client/x11/record.cpp @@ -182,7 +182,7 @@ bool WaveRecorder::init(uint32_t sampels_per_sec, } if ((err = snd_pcm_sw_params_set_start_threshold(_pcm, _sw_params, frame_size)) < 0) { - LOG_ERROR("cannot set start treshold %s", snd_strerror(err)); + LOG_ERROR("cannot set start threshold %s", snd_strerror(err)); return false; }