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:
Arun Raghavan 2011-08-18 13:34:33 +05:30
parent f0be9c4004
commit 2568542b18

View file

@ -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 */