summaryrefslogtreecommitdiffstats
path: root/client/windows/record.h
diff options
context:
space:
mode:
authorJeremy White <jwhite@codeweavers.com>2013-11-30 09:19:47 -0600
committerChristophe Fergeau <cfergeau@redhat.com>2014-01-02 12:39:04 +0100
commit530888ad900421ddbf43154fe0f9b916e7cde3c7 (patch)
tree6dc32cd8eab55663dd28f988f3ef7cf407e4fbce /client/windows/record.h
parentce9b714137a767b81f2d3c40b5f3ce0d5cf70fc8 (diff)
downloadspice-530888ad900421ddbf43154fe0f9b916e7cde3c7.tar.gz
spice-530888ad900421ddbf43154fe0f9b916e7cde3c7.tar.xz
spice-530888ad900421ddbf43154fe0f9b916e7cde3c7.zip
Fix typo; sampel --> sample
Signed-off-by: Jeremy White <jwhite@codeweavers.com>
Diffstat (limited to 'client/windows/record.h')
-rw-r--r--client/windows/record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/windows/record.h b/client/windows/record.h
index 4071af4f..73264197 100644
--- a/client/windows/record.h
+++ b/client/windows/record.h
@@ -23,7 +23,7 @@
class WaveRecorder: public WaveRecordAbstract, public EventSources::Trigger {
public:
- WaveRecorder(Platform::RecordClient& client, uint32_t sampels_per_sec,
+ WaveRecorder(Platform::RecordClient& client, uint32_t samples_per_sec,
uint32_t bits_per_sample, uint32_t channels);
virtual ~WaveRecorder();
@@ -34,7 +34,7 @@ public:
virtual void on_event();
private:
- void init_ring(uint32_t sampels_per_sec, uint32_t frame_bytes, uint32_t frame_align);
+ void init_ring(uint32_t samples_per_sec, uint32_t frame_bytes, uint32_t frame_align);
WAVEHDR* wave_hader(uint32_t position);
void move_head();