diff options
author | Elliott Hughes <enh@google.com> | 2014-05-07 17:12:40 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-05-07 17:12:40 -0700 |
commit | ae0a62b014ece4bb9a0f8872738f58e7aec8378d (patch) | |
tree | 58fcd6b42675f2bb04a306d645686a25577c179d /libc/private | |
parent | 1ee18d0eb047edda23987c28bc78b8f7e4c2db0a (diff) | |
download | bionic-ae0a62b014ece4bb9a0f8872738f58e7aec8378d.zip bionic-ae0a62b014ece4bb9a0f8872738f58e7aec8378d.tar.gz bionic-ae0a62b014ece4bb9a0f8872738f58e7aec8378d.tar.bz2 |
Fix LOG_ID_CRASH build failure.
Change-Id: I66517e30c568d7f36f6bf6b1e4507ecf14f01226
Diffstat (limited to 'libc/private')
-rw-r--r-- | libc/private/libc_logging.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/libc/private/libc_logging.h b/libc/private/libc_logging.h index 822f232..7dd97a4 100644 --- a/libc/private/libc_logging.h +++ b/libc/private/libc_logging.h @@ -53,14 +53,15 @@ enum { }; enum { - LOG_ID_MIN = 0, + LOG_ID_MIN = 0, - LOG_ID_MAIN = 0, - LOG_ID_RADIO = 1, - LOG_ID_EVENTS = 2, - LOG_ID_SYSTEM = 3, + LOG_ID_MAIN = 0, + LOG_ID_RADIO = 1, + LOG_ID_EVENTS = 2, + LOG_ID_SYSTEM = 3, + LOG_ID_CRASH = 4, - LOG_ID_MAX + LOG_ID_MAX }; struct abort_msg_t { |