Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(44)

Unified Diff: src/processor/minidump.cc

Issue 2734002: Fix building minidump processor and minidump tools for MinGW Base URL: http://google-breakpad.googlecode.com/svn/trunk
Patch Set: Fix building minidump processor and minidump tools for MinGW Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/processor/logging.cc ('k') | src/processor/tokenize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/minidump.cc
===================================================================
--- src/processor/minidump.cc (revision 1418)
+++ src/processor/minidump.cc (working copy)
@@ -369,7 +369,7 @@
// Converts a time_t to a string showing the time in UTC.
string TimeTToUTCString(time_t tt) {
struct tm timestruct;
-#ifdef _WIN32
+#ifdef _MSC_VER
gmtime_s(&timestruct, &tt);
#else
gmtime_r(&tt, &timestruct);
« no previous file with comments | « src/processor/logging.cc ('k') | src/processor/tokenize.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted