am 045be135: Merge "liblog: logcat color output corrupted on 32-bit"

* commit '045be135de5acee7a2d0fd7e303dc15ded2d69fa':
  liblog: logcat color output corrupted on 32-bit
This commit is contained in:
Mark Salyzyn 2015-01-22 19:08:27 +00:00 committed by Android Git Automerger
commit 6f355d2c8f
1 changed files with 1 additions and 1 deletions

View File

@ -824,7 +824,7 @@ char *android_log_formatLogLine (
* set the length at the maximum (size minus null byte)
*/
prefixLen += MIN(len, sizeof(prefixBuf) - prefixLen);
suffixLen = MIN(suffixLen, sizeof(suffixLen));
suffixLen = MIN(suffixLen, sizeof(suffixBuf));
/* the following code is tragically unreadable */