diff options
author | Liang Guo <bluestonechina@gmail.com> | 2011-07-25 01:52:23 +0800 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2011-08-02 11:13:49 +0200 |
commit | 39867cb4df4bdc929144953898c60b479f3901cc (patch) | |
tree | edf96f82a873f90c6b68e73f47c0f3978ef142cd /client/x11 | |
parent | a2433172c81d234f4f6e00909f0c992d4e83a138 (diff) | |
download | spice-39867cb4df4bdc929144953898c60b479f3901cc.tar.gz spice-39867cb4df4bdc929144953898c60b479f3901cc.tar.xz spice-39867cb4df4bdc929144953898c60b479f3901cc.zip |
Fix typo: treshold -> threshold
Diffstat (limited to 'client/x11')
-rw-r--r-- | client/x11/record.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |