diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2012-07-05 22:28:23 +0200 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2012-07-05 22:28:23 +0200 |
commit | f470c71cafdd62f5d36ce6007be0dde44e65531b (patch) | |
tree | 430f93f29dae4c3d6c3dcf31f53403547bbc50e9 /client.c | |
parent | 7a785bf8e840de5faf6210f65ef84e01120fa6c9 (diff) | |
download | hardware_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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |