emulator: Fix parameter order in le_conn_update()

The values are passed by the only caller in min, max order, which
makes sense since that's how they are over HCI as well. Update the
function to match this.
This commit is contained in:
Johan Hedberg 2015-08-14 08:36:30 +03:00
parent b58a5e5b60
commit a9f7862172

View File

@ -1195,7 +1195,7 @@ static void conn_request(struct btdev *btdev, const uint8_t *bdaddr)
}
static void le_conn_update(struct btdev *btdev, uint16_t handle,
uint16_t max_interval, uint16_t min_interval,
uint16_t min_interval, uint16_t max_interval,
uint16_t latency, uint16_t supv_timeout,
uint16_t min_length, uint16_t max_length)
{