handsfree-audio: Fix broken coding style in switch statement

This commit is contained in:
Marcel Holtmann 2014-09-20 16:13:45 +02:00
parent 7fb4899970
commit 8ebb17977b
1 changed files with 4 additions and 4 deletions

View File

@ -72,10 +72,10 @@ static ofono_bool_t transparent_sco = FALSE;
static uint16_t codec2setting(uint8_t codec)
{
switch (codec) {
case HFP_CODEC_CVSD:
return BT_VOICE_CVSD_16BIT;
default:
return BT_VOICE_TRANSPARENT;
case HFP_CODEC_CVSD:
return BT_VOICE_CVSD_16BIT;
default:
return BT_VOICE_TRANSPARENT;
}
}