summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/profiler/ProfileNode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/profiler/ProfileNode.cpp')
-rw-r--r--JavaScriptCore/profiler/ProfileNode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/JavaScriptCore/profiler/ProfileNode.cpp b/JavaScriptCore/profiler/ProfileNode.cpp
index f60c72e..1391f99 100644
--- a/JavaScriptCore/profiler/ProfileNode.cpp
+++ b/JavaScriptCore/profiler/ProfileNode.cpp
@@ -45,7 +45,7 @@ namespace JSC {
static double getCount()
{
#if OS(WINDOWS)
- static LARGE_INTEGER frequency = {0};
+ static LARGE_INTEGER frequency;
if (!frequency.QuadPart)
QueryPerformanceFrequency(&frequency);
LARGE_INTEGER counter;