Merge "Declare __fake_use_va_args as a variadic function."

am: e352a75b90

Change-Id: I4cfeb23cab215741944485baa47450115ed671e0
This commit is contained in:
Chih-Hung Hsieh 2018-07-25 16:44:45 -07:00 committed by android-build-merger
commit 77f64e0509
1 changed files with 1 additions and 1 deletions

2
lmkd.c
View File

@ -341,7 +341,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;