audio: Improve error message for RILD connection

We need to make it more prominent so people recognize it and fix their
connection.

Change-Id: I36218ac130351b053f7fda2319d797885ac0930e
tirimbino
Andreas Schneider 8 years ago committed by Christopher N. Hesse
parent 41c9f3d2bc
commit 9c195610df
  1. 3
      audio/ril_interface.c

@ -89,7 +89,8 @@ static int ril_connect_if_required(struct ril_handle *ril)
rc = Connect_RILD(ril->client);
if (rc != RIL_CLIENT_ERR_SUCCESS) {
ALOGE("Connect_RILD() failed");
ALOGE("FATAL: Failed to connect to RILD: %s",
strerror(errno));
return -1;
}

Loading…
Cancel
Save