Replace more spaces with tabs

This commit is contained in:
Sergio Costas Rodriguez 2023-11-22 13:50:25 +01:00 committed by Wim Taymans
parent 6506bb2f44
commit e1571404d7

View file

@ -459,12 +459,12 @@ on_connect(void *data, int fd, uint32_t mask)
pw_properties_set(client->props, PW_KEY_SNAP_ID, snap_app_id); pw_properties_set(client->props, PW_KEY_SNAP_ID, snap_app_id);
pw_properties_set(client->props, pw_properties_set(client->props,
PW_KEY_SNAP_PLAYBACK_ALLOWED, PW_KEY_SNAP_PLAYBACK_ALLOWED,
(snap_access & PW_SANDBOX_ACCESS_PLAYBACK) ? "true" : "false"); (snap_access & PW_SANDBOX_ACCESS_PLAYBACK) ? "true" : "false");
pw_properties_set(client->props, pw_properties_set(client->props,
PW_KEY_SNAP_RECORD_ALLOWED, PW_KEY_SNAP_RECORD_ALLOWED,
(snap_access & PW_SANDBOX_ACCESS_RECORD) ? "true" : "false"); (snap_access & PW_SANDBOX_ACCESS_RECORD) ? "true" : "false");
} }
#endif #endif
} }