mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
core: Fix variable "has_whined" value bug
In the file src/pulsecore/random.c I found that the log information "Failed to get proper entropy. Falling back to seeding with current time." would never be printed. This change corrects the issue.
This commit is contained in:
parent
52e3268c9f
commit
d963b868de
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include "random.h"
|
||||
|
||||
static pa_bool_t has_whined = TRUE;
|
||||
static pa_bool_t has_whined = FALSE;
|
||||
|
||||
static const char * const devices[] = { "/dev/urandom", "/dev/random", NULL };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue