Merge pull request #796 from microsoft/mkoscumb-clang-format-warning-fix

Fix Clang -Wformat warning on 64 bit Droid
This commit is contained in:
Matthew Koscumb 2021-03-02 19:45:46 -08:00 коммит произвёл GitHub
Родитель ce7b301fe2 97a32f9bfc
Коммит 46a7d65089
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@ void EventDecoderListener::OnDebugEvent(DebugEvent &evt)
{
auto PrintEvent = [](const char *lbl, const DebugEvent &e)
{
printf("%20s: seq=%llu, ts=%llu, type=0x%08x, p1=%zu, p2=%zu\n", lbl, e.seq, e.ts, e.type, e.param1, e.param2);
printf("%20s: seq=%llu, ts=%llu, type=0x%08x, p1=%zu, p2=%zu\n", lbl, static_cast<unsigned long long>(e.seq), static_cast<unsigned long long>(e.ts), e.type, e.param1, e.param2);
};
// lock for the duration of the print, so that we don't mess up the prints