mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
Revert "device-restore: Make bools not be bit fields"
This reverts commit ba163b8b23.
After discussion with Colin, decided that we don't want to do this
piecemeal -- need some discussion on the mailing-list and then we should
do this across the tree in one fell swoop post 1.0.
Conflicts:
src/modules/module-device-restore.c
This commit is contained in:
parent
f0be9c4004
commit
2568542b18
1 changed files with 4 additions and 4 deletions
|
|
@ -93,10 +93,10 @@ struct userdata {
|
|||
pa_native_protocol *protocol;
|
||||
pa_idxset *subscribed;
|
||||
|
||||
pa_bool_t restore_volume;
|
||||
pa_bool_t restore_muted;
|
||||
pa_bool_t restore_port;
|
||||
pa_bool_t restore_formats;
|
||||
pa_bool_t restore_volume:1;
|
||||
pa_bool_t restore_muted:1;
|
||||
pa_bool_t restore_port:1;
|
||||
pa_bool_t restore_formats:1;
|
||||
};
|
||||
|
||||
/* Protocol extention commands */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue