This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 9882110357fc17f18a10719901fa7ebbb1fbda71
Author: Carsten Haitzler <[email protected]>
AuthorDate: Tue Feb 7 09:50:15 2023 +0000
mixer - be explicit on pluse started flag being false
while runtime linking/compiler will make sure these are zero by
default normally... be explicit.
---
src/modules/mixer/lib/backends/pulseaudio/pulse.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/mixer/lib/backends/pulseaudio/pulse.c b/src/modules/mixer/lib/backends/pulseaudio/pulse.c
index 327a58f46..09ee9d214 100644
--- a/src/modules/mixer/lib/backends/pulseaudio/pulse.c
+++ b/src/modules/mixer/lib/backends/pulseaudio/pulse.c
@@ -1534,7 +1534,7 @@ _pulse_connect(void *data)
return ret;
}
-static Eina_Bool pulse_started;
+static Eina_Bool pulse_started = EINA_FALSE;
static void
_shutdown(void)
@@ -1580,7 +1580,7 @@ _init(Emix_Event_Cb cb, const void *data)
{
if (!pulse_started)
ecore_exe_run("pulseaudio --start", NULL);
- pulse_started = 1;
+ pulse_started = EINA_TRUE;
}
ctx->cb = cb;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.