diff options
| author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2009-01-19 11:27:16 -0300 | 
|---|---|---|
| committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2009-01-21 12:26:20 -0300 | 
| commit | a2da56b3aa57890db60205c9e75618c264bec6b0 (patch) | |
| tree | b3ed29f4d522b80aeabf9015e6ad4d5fd8cf8273 | |
| parent | 3eb1274d049dfc5fe60ced2041718c94ea75d760 (diff) | |
Fix bug on alsa plugin when debug is active.
| -rw-r--r-- | audio/pcm_bluetooth.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/audio/pcm_bluetooth.c b/audio/pcm_bluetooth.c index 5dfd7784..aae8779d 100644 --- a/audio/pcm_bluetooth.c +++ b/audio/pcm_bluetooth.c @@ -1495,7 +1495,8 @@ static int audioservice_send(int sk, const bt_audio_msg_header_t *msg)  	length = msg->length ? msg->length : BT_SUGGESTED_BUFFER_SIZE; -	DBG("sending %s", bt_audio_strmsg(msg->msg_type)); +	DBG("sending %s:%s", bt_audio_strtype(msg->type), +		bt_audio_strname(msg->name));  	if (send(sk, msg, length, 0) > 0)  		err = 0;  	else { | 
