Merge "Declare __fake_use_va_args as a variadic function." am: e352a75b90 am: 7585d2270e am: bc7f7e7311

am: 044942e5b8

Change-Id: I72571e509dcda07ce4f2e36639523e23f5752146
This commit is contained in:
Chih-Hung Hsieh 2018-07-25 16:56:27 -07:00 committed by android-build-merger
commit afa129c112
1 changed files with 1 additions and 1 deletions

2
lmkd.c
View File

@ -345,7 +345,7 @@ static int reread_file(struct reread_data *data, char *buf, size_t buf_size) {
data->fd = -1;
return -1;
}
ALOG_ASSERT((size_t)size < buf_size - 1, data->filename " too large");
ALOG_ASSERT((size_t)size < buf_size - 1, "%s too large", data->filename);
buf[size] = 0;
return 0;