diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-11-25 12:44:34 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-11-25 12:44:34 +0000 |
| commit | d3df0fb564235b2dd1b7ec9d5d406233b8f793be (patch) | |
| tree | 99ec9883f6d3dd87629e2057092c213d8168416c | |
| parent | bb4a0926cdaaba06285e152ca05faae413267f05 (diff) | |
Fix windows build.
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index c4a634c08..4a9998141 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -259,7 +259,7 @@ LONG WINAPI exception_handler(struct _EXCEPTION_POINTERS *) { dbg::stack s; FILE* f = fopen_boost (backtrace_file, "w"); - for (dbg::stack_frame::const_iterator i = s.begin(); i != s.end(); ++i) { + for (dbg::stack::const_iterator i = s.begin(); i != s.end(); ++i) { fprintf (f, "%p %s %d %s", i->instruction, i->function.c_str(), i->line, i->module.c_str()); } fclose (f); |
