aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-01-17 23:20:24 +0000
committerthestig@chromium.org <thestig@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2014-01-17 23:20:24 +0000
commit0864f0afaa1a813f3f9e92a1cfacec364d5399ad (patch)
tree10934e55aba3bedcee56bd78a544542990a214cc /src/common/windows
parentRefactor the Windows MinidumpGenerator interface to get rid of the overloads ... (diff)
downloadbreakpad-0864f0afaa1a813f3f9e92a1cfacec364d5399ad.tar.xz
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
Diffstat (limited to 'src/common/windows')
-rw-r--r--src/common/windows/pdb_source_line_writer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/windows/pdb_source_line_writer.cc b/src/common/windows/pdb_source_line_writer.cc
index 1f24f70a..f39e33b5 100644
--- a/src/common/windows/pdb_source_line_writer.cc
+++ b/src/common/windows/pdb_source_line_writer.cc
@@ -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;