handsfree-audio: Fix broken coding style in switch statement
authorMarcel Holtmann <marcel@holtmann.org>
Sat, 20 Sep 2014 14:13:45 +0000 (16:13 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 20 Sep 2014 14:13:45 +0000 (16:13 +0200)
src/handsfree-audio.c

index ba0b435..6f69fb3 100644 (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;
        }
 }