m-mixer-api: use gboolean instead of bool

The WpSpaPodParser always expects gboolean for boolean values. We should never
use bool in WirePlumber unless strictly necessary.

Fixes #584
This commit is contained in:
Julian Bouzas
2024-03-04 11:56:43 -05:00
committed by George Kiagiadakis
parent 9c3aa5409e
commit 9da732d88c

View File

@@ -34,8 +34,8 @@ struct node_info {
struct volume volume;
struct volume monitorVolume;
struct channel_map map;
bool mute;
bool monitorMute;
gboolean mute;
gboolean monitorMute;
float svolume;
float base;
float step;