goep_client: fix compile without ENABLE_GOEP_L2CAP

This commit is contained in:
Matthias Ringwald 2023-05-11 15:26:47 +02:00
parent c7a36ba4a1
commit fe0c3f1511

View File

@ -536,10 +536,8 @@ uint8_t goep_client_create_connection(btstack_packet_handler_t handler, bd_addr_
return goep_client_connect(goep_client, &goep_client_singleton_ertm_config, goep_client_singleton_ertm_buffer,
sizeof(goep_client_singleton_ertm_buffer), handler, addr, uuid, 0, out_cid);
#else
return goep_client_connect(goep_client, NULL, NULL,
0, handler, addr, uuid, 0, out_cid);
return goep_client_connect(goep_client,NULL, NULL, 0, handler, addr, uuid, 0, out_cid);
#endif
}
uint32_t goep_client_get_pbap_supported_features(uint16_t goep_cid){