diff options
| author | 2012-01-10 14:08:32 -0800 | |
|---|---|---|
| committer | 2012-01-10 14:08:32 -0800 | |
| commit | 38e90751a25606459a9e571aa1b6c992d4c64151 (patch) | |
| tree | 096150aa4d16aca16a4d31ebb87f0dbd0b62ccd9 /libs/utils/String16.cpp | |
| parent | f6f793c4ac3670d40a5a38f40388124ddca56cf9 (diff) | |
| parent | ec193dec4d9ca2cfc8295c4becfe950a906a15ed (diff) | |
Merge "Rename LOG_ASSERT to ALOG_ASSERT DO NOT MERGE"
Diffstat (limited to 'libs/utils/String16.cpp')
| -rw-r--r-- | libs/utils/String16.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/String16.cpp b/libs/utils/String16.cpp index 4ce166426c11..94e072fce651 100644 --- a/libs/utils/String16.cpp +++ b/libs/utils/String16.cpp @@ -112,7 +112,7 @@ String16::String16(const char16_t* o) { size_t len = strlen16(o); SharedBuffer* buf = SharedBuffer::alloc((len+1)*sizeof(char16_t)); - LOG_ASSERT(buf, "Unable to allocate shared buffer"); + ALOG_ASSERT(buf, "Unable to allocate shared buffer"); if (buf) { char16_t* str = (char16_t*)buf->data(); strcpy16(str, o); @@ -126,7 +126,7 @@ String16::String16(const char16_t* o) String16::String16(const char16_t* o, size_t len) { SharedBuffer* buf = SharedBuffer::alloc((len+1)*sizeof(char16_t)); - LOG_ASSERT(buf, "Unable to allocate shared buffer"); + ALOG_ASSERT(buf, "Unable to allocate shared buffer"); if (buf) { char16_t* str = (char16_t*)buf->data(); memcpy(str, o, len*sizeof(char16_t)); |