summaryrefslogtreecommitdiffstats
path: root/call.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-03-31 22:40:51 +0200
committerPaul Kocialkowski <contact@paulk.fr>2013-03-31 22:48:13 +0200
commit05951ff716f62b05da40fef1aa1f82e2fa9d2601 (patch)
treec5b0f5ccc481a6ba031e09ecd6a143601d512dca /call.c
parent43b201403d470c0c6650e33a9811b808f5b126d6 (diff)
downloadhardware_ril_samsung-ril-05951ff716f62b05da40fef1aa1f82e2fa9d2601.zip
hardware_ril_samsung-ril-05951ff716f62b05da40fef1aa1f82e2fa9d2601.tar.gz
hardware_ril_samsung-ril-05951ff716f62b05da40fef1aa1f82e2fa9d2601.tar.bz2
Coding style: add spaces around equal sign in for statements
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'call.c')
-rw-r--r--call.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/call.c b/call.c
index 4258bf1..6b34eac 100644
--- a/call.c
+++ b/call.c
@@ -156,7 +156,7 @@ void ipc_call_list(struct ipc_message_info *info)
current_calls = (RIL_Call **) calloc(1, count * sizeof(RIL_Call *));
entry = (struct ipc_call_list_entry *) ((char *) info->data + sizeof(unsigned char));
- for (i=0 ; i < count ; i++) {
+ for (i = 0 ; i < count ; i++) {
if (((int) entry - (int) info->data) >= (int) info->length)
goto error;
@@ -183,7 +183,7 @@ void ipc_call_list(struct ipc_message_info *info)
ril_request_complete(ril_request_get_token(info->aseq), RIL_E_SUCCESS, current_calls, (count * sizeof(RIL_Call *)));
- for (i=0 ; i < count ; i++) {
+ for (i = 0 ; i < count ; i++) {
if (current_calls[i]->number != NULL)
free(current_calls[i]->number);
@@ -196,7 +196,7 @@ void ipc_call_list(struct ipc_message_info *info)
error:
if (current_calls != NULL) {
- for (i=0 ; i < count ; i++) {
+ for (i = 0 ; i < count ; i++) {
if (current_calls[i]->number != NULL)
free(current_calls[i]->number);
@@ -276,7 +276,7 @@ void ril_request_dtmf(RIL_Token t, void *data, int length)
burst[0] = count;
// Apparently, it's possible to set multiple DTMF tones on this message
- for (i=0 ; i < count ; i++) {
+ for (i = 0 ; i < count ; i++) {
cont_dtmf.state = IPC_CALL_DTMF_STATE_START;
cont_dtmf.tone = tone;