summaryrefslogtreecommitdiffstats
path: root/src/voicecall.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2011-07-14 16:14:41 -0500
committerDenis Kenzior <denkenz@gmail.com>2011-07-14 18:25:31 -0500
commit2ff685ac5468ddb83497b80dbc27cbde480e2900 (patch)
tree71b8badcd90ba8e882fb3ba845b1c5c1b09758f6 /src/voicecall.c
parentf403f7157363b6a1fdb93acd4d0127ea44087476 (diff)
downloadofono-2ff685ac5468ddb83497b80dbc27cbde480e2900.tar.bz2
voicecall: Minor style fixes
Diffstat (limited to 'src/voicecall.c')
-rw-r--r--src/voicecall.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/voicecall.c b/src/voicecall.c
index fc431176..f6d15ff7 100644
--- a/src/voicecall.c
+++ b/src/voicecall.c
@@ -2977,8 +2977,8 @@ static void emulator_chld_cb(struct ofono_emulator *em,
if (vc->pending_em || vc->pending || vc->dial_req)
goto fail;
- if (!voicecalls_have_held(vc)
- || !voicecalls_have_active(vc))
+ if (!voicecalls_have_held(vc) ||
+ !voicecalls_have_active(vc))
goto fail;
vc->pending_em = em;
@@ -3092,8 +3092,8 @@ static void emulator_vts_cb(struct ofono_emulator *em,
if (str == NULL)
break;
- if (!g_ascii_isdigit(str[0]) && str[0] != '*' && str[0] != '#'
- && (str[0] < 'A' || str[0] > 'D'))
+ if (!g_ascii_isdigit(str[0]) && str[0] != '*' &&
+ str[0] != '#' && (str[0] < 'A' || str[0] > 'D'))
break;
if (str[1] != '\0')