Merge "crash_reporter: Fix a -Wmissing-field-initializers warning." am: 2913fa1908
am: df5ac40d6d

* commit 'df5ac40d6da1b82a3e0b2dd4b4300be9fac65ddf':
  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;