summaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2012-07-05 22:28:23 +0200
committerPaul Kocialkowski <contact@paulk.fr>2012-07-05 22:28:23 +0200
commitf470c71cafdd62f5d36ce6007be0dde44e65531b (patch)
tree430f93f29dae4c3d6c3dcf31f53403547bbc50e9 /client.c
parent7a785bf8e840de5faf6210f65ef84e01120fa6c9 (diff)
downloadhardware_ril_samsung-ril-f470c71cafdd62f5d36ce6007be0dde44e65531b.zip
hardware_ril_samsung-ril-f470c71cafdd62f5d36ce6007be0dde44e65531b.tar.gz
hardware_ril_samsung-ril-f470c71cafdd62f5d36ce6007be0dde44e65531b.tar.bz2
Increased the max number of attempts when creating a client to 10
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'client.c')
-rw-r--r--client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c
index 12e195c..7f2b987 100644
--- a/client.c
+++ b/client.c
@@ -66,8 +66,8 @@ int ril_client_create(struct ril_client *client)
int rc;
int c;
- for(c = 5 ; c > 0 ; c--) {
- LOGD("Creating RIL client inners, try #%d", 6-c);
+ for(c = 10 ; c > 0 ; c--) {
+ LOGD("Creating RIL client inners, try #%d", 11-c);
rc = client->create(client);