Index: webrtc/system_wrappers/source/clock.cc |
diff --git a/webrtc/system_wrappers/source/clock.cc b/webrtc/system_wrappers/source/clock.cc |
index a7f261a8b29d8f9257e8d9644341f8b0c62812e2..31c52263487812f9553dd18b6b9d0a7732ef82dc 100644 |
--- a/webrtc/system_wrappers/source/clock.cc |
+++ b/webrtc/system_wrappers/source/clock.cc |
@@ -155,9 +155,9 @@ class WindowsRealTimeClock : public RealTimeClock { |
} |
static ReferencePoint GetSystemReferencePoint() { |
- ReferencePoint ref = {0}; |
- FILETIME ft0 = {0}; |
- FILETIME ft1 = {0}; |
+ ReferencePoint ref = {}; |
+ FILETIME ft0 = {}; |
+ FILETIME ft1 = {}; |
// Spin waiting for a change in system time. As soon as this change happens, |
// get the matching call for timeGetTime() as soon as possible. This is |
// assumed to be the most accurate offset that we can get between |