From 02f8bc6eeb93809da4a7dee62fd092095a11d885 Mon Sep 17 00:00:00 2001 From: Matthew Xie Date: Fri, 26 Oct 2012 16:12:14 -0700 Subject: Address type should be UINT8 instead of char for btif_media_check_iop_exceptions Fix a type mismatch error introduced by last checkin: Manage a2dp frame distribution... bug 7302257 Change-Id: I8fec02d416e9bd0f2a1cca72e0bbc5d2f704b29a --- btif/src/btif_av.c | 2 +- btif/src/btif_media_task.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'btif/src') diff --git a/btif/src/btif_av.c b/btif/src/btif_av.c index af4830f..4419c22 100755 --- a/btif/src/btif_av.c +++ b/btif/src/btif_av.c @@ -463,7 +463,7 @@ static BOOLEAN btif_av_state_opened_handler(btif_sm_event_t event, void *p_data) switch (event) { case BTIF_SM_ENTER_EVT: - btif_media_check_iop_exceptions((char *)btif_av_cb.peer_bda.address); + btif_media_check_iop_exceptions(btif_av_cb.peer_bda.address); break; case BTIF_SM_EXIT_EVT: diff --git a/btif/src/btif_media_task.c b/btif/src/btif_media_task.c index 68b2e4c..8978cf6 100755 --- a/btif/src/btif_media_task.c +++ b/btif/src/btif_media_task.c @@ -2192,7 +2192,7 @@ static void btif_media_send_aa_frame(void) ** *******************************************************************************/ -void btif_media_check_iop_exceptions(char *peer_bda) +void btif_media_check_iop_exceptions(UINT8 *peer_bda) { /* disable rate scaling for pcm carkit */ if ((peer_bda[0] == 0x00) && -- cgit v1.1