mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 00:04:29 +08:00
client/player: Fix copy/paste error
Error: COPY_PASTE_ERROR (CWE-398): [#def95] [important] client/player.c:1846:6: original: "qos->sync_cte_type" looks like the original copy. client/player.c:1852:6: copy_paste_error: "sync_cte_type" in "qos->sync_cte_type" looks like a copy-paste error. client/player.c:1852:6: remediation: Should it say "mse" instead? 1850| } 1851| 1852|-> if (qos->sync_cte_type) { 1853| bt_shell_printf("MSE %u\n", qos->mse); 1854| g_dbus_dict_append_entry(iter, "MSE", DBUS_TYPE_BYTE,
This commit is contained in:
parent
9a36f191aa
commit
6f041df23e
@ -1849,7 +1849,7 @@ static void append_bcast_qos(DBusMessageIter *iter, struct endpoint_config *cfg)
|
||||
&qos->sync_cte_type);
|
||||
}
|
||||
|
||||
if (qos->sync_cte_type) {
|
||||
if (qos->mse) {
|
||||
bt_shell_printf("MSE %u\n", qos->mse);
|
||||
g_dbus_dict_append_entry(iter, "MSE", DBUS_TYPE_BYTE,
|
||||
&qos->mse);
|
||||
|
Loading…
Reference in New Issue
Block a user