summaryrefslogtreecommitdiffstats
path: root/client/windows/platform.cpp
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/platform.cpp
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/platform.cpp')
-rw-r--r--client/windows/platform.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/windows/platform.cpp b/client/windows/platform.cpp
index d3417e39..fc51a12d 100644
--- a/client/windows/platform.cpp
+++ b/client/windows/platform.cpp
@@ -640,18 +640,18 @@ void Platform::set_process_loop(ProcessLoop& main_process_loop)
}
WaveRecordAbstract* Platform::create_recorder(RecordClient& client,
- uint32_t sampels_per_sec,
+ uint32_t samples_per_sec,
uint32_t bits_per_sample,
uint32_t channels)
{
- return new WaveRecorder(client, sampels_per_sec, bits_per_sample, channels);
+ return new WaveRecorder(client, samples_per_sec, bits_per_sample, channels);
}
-WavePlaybackAbstract* Platform::create_player(uint32_t sampels_per_sec,
+WavePlaybackAbstract* Platform::create_player(uint32_t samples_per_sec,
uint32_t bits_per_sample,
uint32_t channels)
{
- return new WavePlayer(sampels_per_sec, bits_per_sample, channels);
+ return new WavePlayer(samples_per_sec, bits_per_sample, channels);
}
static void toggle_modifier(int key)