summaryrefslogtreecommitdiffstats
path: root/reference-ril/atchannel.c
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-08 13:48:26 +0000
committerSteve Block <steveblock@google.com>2012-01-08 13:48:26 +0000
commitf423cde8f901a72fd0cb811583a2cdabe62c64bd (patch)
tree282aa909cffb6def3ec505c06c3116e58b1bf41a /reference-ril/atchannel.c
parent43b9c52fcaab343282243b6cbc3c5b2a56760f09 (diff)
downloadandroid_hardware_ril-f423cde8f901a72fd0cb811583a2cdabe62c64bd.tar.gz
android_hardware_ril-f423cde8f901a72fd0cb811583a2cdabe62c64bd.tar.bz2
android_hardware_ril-f423cde8f901a72fd0cb811583a2cdabe62c64bd.zip
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220 Bug: 5449033 Change-Id: Id52de89149d4580873215fafc922ec4bd8d722ed
Diffstat (limited to 'reference-ril/atchannel.c')
-rw-r--r--reference-ril/atchannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/reference-ril/atchannel.c b/reference-ril/atchannel.c
index 410ad0e..5e7a1c1 100644
--- a/reference-ril/atchannel.c
+++ b/reference-ril/atchannel.c
@@ -290,7 +290,7 @@ static void processLine(const char *line)
break;
default: /* this should never be reached */
- LOGE("Unsupported AT command type %d\n", s_type);
+ ALOGE("Unsupported AT command type %d\n", s_type);
handleUnsolicited(line);
break;
}
@@ -371,7 +371,7 @@ static const char *readline()
while (p_eol == NULL) {
if (0 == MAX_AT_RESPONSE - (p_read - s_ATBuffer)) {
- LOGE("ERROR: Input line exceeded buffer\n");
+ ALOGE("ERROR: Input line exceeded buffer\n");
/* ditch buffer and start over again */
s_ATBufferCur = s_ATBuffer;
*s_ATBufferCur = '\0';