mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-12-23 12:15:41 +00:00
Fix format warning in omap.cc
omap.cc(212): warning C4473: 'fprintf' : not enough arguments passed for format string BUG=None Review URL: https://codereview.chromium.org/1776613004
This commit is contained in:
parent
11e17136db
commit
139693446b
|
@ -210,7 +210,7 @@ bool FindAndLoadOmapTable(const wchar_t* name,
|
||||||
reinterpret_cast<BYTE*>(&table->at(0)),
|
reinterpret_cast<BYTE*>(&table->at(0)),
|
||||||
&count_read))) {
|
&count_read))) {
|
||||||
fprintf(stderr, "IDiaEnumDebugStreamData::Next failed while reading "
|
fprintf(stderr, "IDiaEnumDebugStreamData::Next failed while reading "
|
||||||
"data from stream \"%ws\"\n");
|
"data from stream \"%ws\"\n", name);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue