aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/pulseaudio.cpp
diff options
context:
space:
mode:
authorFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
committerFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
commit6ddb2c36fc19f0bdcd46ff56536525325d4d3bc5 (patch)
tree6a3a30275aa10a898e064d89648e4971cd81f1a7 /Alc/backends/pulseaudio.cpp
parent4169c6f37db4fa1cc8e2d052b377af479763a930 (diff)
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/backends/pulseaudio.cpp')
-rw-r--r--Alc/backends/pulseaudio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/backends/pulseaudio.cpp b/Alc/backends/pulseaudio.cpp
index df506304..bf952813 100644
--- a/Alc/backends/pulseaudio.cpp
+++ b/Alc/backends/pulseaudio.cpp
@@ -186,7 +186,7 @@ MAKE_FUNC(pa_stream_begin_write);
#endif
-ALCboolean pulse_load(void)
+ALCboolean pulse_load()
{
ALCboolean ret{ALC_TRUE};
#ifdef HAVE_DYNLOAD
@@ -599,7 +599,7 @@ void device_sink_callback(pa_context *UNUSED(context), const pa_sink_info *info,
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
}
-void probePlaybackDevices(void)
+void probePlaybackDevices()
{
PlaybackDevices.clear();
@@ -681,7 +681,7 @@ void device_source_callback(pa_context *UNUSED(context), const pa_source_info *i
TRACE("Got device \"%s\", \"%s\"\n", newentry.name.c_str(), newentry.device_name.c_str());
}
-void probeCaptureDevices(void)
+void probeCaptureDevices()
{
CaptureDevices.clear();