commit | 2913fa190831ff224e7a0ef1311c345fe67c758f | [log] [tgz] |
---|---|---|
author | James Hawkins <jhawkins@google.com> | Fri Feb 26 23:35:26 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Feb 26 23:35:26 2016 +0000 |
tree | e392453f9e2540a5b8587f1dd56055db87387793 | |
parent | ac06dcd29fbc551ebc77abdee2557db98930058e [diff] | |
parent | 69bd21f69556be7b2fc620317334514716ddca98 [diff] |
Merge "crash_reporter: Fix a -Wmissing-field-initializers warning."
diff --git a/crash_reporter/crash_collector_test.cc b/crash_reporter/crash_collector_test.cc index 7146638..a386cd1 100644 --- a/crash_reporter/crash_collector_test.cc +++ b/crash_reporter/crash_collector_test.cc
@@ -95,7 +95,7 @@ } TEST_F(CrashCollectorTest, FormatDumpBasename) { - struct tm tm = {0}; + struct tm tm = {}; tm.tm_sec = 15; tm.tm_min = 50; tm.tm_hour = 13;