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
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ bool FindAndLoadOmapTable(const wchar_t* name,
|
|||
reinterpret_cast<BYTE*>(&table->at(0)),
|
||||
&count_read))) {
|
||||
fprintf(stderr, "IDiaEnumDebugStreamData::Next failed while reading "
|
||||
"data from stream \"%ws\"\n");
|
||||
"data from stream \"%ws\"\n", name);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue