diff options
author | Elliott Hughes <enh@google.com> | 2013-03-15 18:26:49 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-03-15 18:26:49 +0000 |
commit | e23ed8c6441389a79c6504295184f7249e01a197 (patch) | |
tree | 8d10d7ccfc20e0a212c60b7628bb4ae709447d37 | |
parent | 4d696eb49d24590a6d6d25657b5bc0103e2d90ba (diff) | |
parent | 2eb44c5aa49f69b6ff0d3f9665d7728757b9ca93 (diff) | |
download | android_bionic-e23ed8c6441389a79c6504295184f7249e01a197.tar.gz android_bionic-e23ed8c6441389a79c6504295184f7249e01a197.tar.bz2 android_bionic-e23ed8c6441389a79c6504295184f7249e01a197.zip |
Merge "Remove useless workaround for HTC RIL bugs."
-rw-r--r-- | libc/bionic/logd_write.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/bionic/logd_write.c b/libc/bionic/logd_write.c index 11c0e68b6..03ac6063d 100644 --- a/libc/bionic/logd_write.c +++ b/libc/bionic/logd_write.c @@ -151,9 +151,6 @@ int __libc_android_log_write(int prio, const char *tag, const char *msg) if (tag == NULL) tag = ""; - if (!strcmp(tag, "HTC_RIL")) - log_id = LOG_ID_RADIO; - vec[0].iov_base = (unsigned char *) &prio; vec[0].iov_len = 1; vec[1].iov_base = (void *) tag; |