mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-24 05:25:37 +01:00
Fix missing semi-colons from r1267.
R=mark@chromium.org Review URL: https://breakpad.appspot.com/1094002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1275 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
8b65346242
commit
0864f0afaa
@ -392,10 +392,10 @@ bool PDBSourceLineWriter::PrintFrameData() {
|
||||
if (!FindTable(session_, &frame_data_enum))
|
||||
return false;
|
||||
|
||||
DWORD last_type = std::numeric_limits<DWORD>::max()
|
||||
DWORD last_rva = std::numeric_limits<DWORD>::max()
|
||||
DWORD last_type = std::numeric_limits<DWORD>::max();
|
||||
DWORD last_rva = std::numeric_limits<DWORD>::max();
|
||||
DWORD last_code_size = 0;
|
||||
DWORD last_prolog_size = std::numeric_limits<DWORD>::max()
|
||||
DWORD last_prolog_size = std::numeric_limits<DWORD>::max();
|
||||
|
||||
CComPtr<IDiaFrameData> frame_data;
|
||||
ULONG count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user