From 6fe1c2b00ba619584137d03db386535ba57a684a Mon Sep 17 00:00:00 2001 From: "dougt%netscape.com" Date: Sun, 15 Sep 2002 20:59:29 +0000 Subject: [PATCH] fixes a gcc warning about a partially-bracketed initializer. patch by dbaron, r=me, b=168584 git-svn-id: svn://10.0.0.236/trunk@129661 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/build/nsXPComInit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/xpcom/build/nsXPComInit.cpp b/mozilla/xpcom/build/nsXPComInit.cpp index ae4679e2797..c4b6f876775 100644 --- a/mozilla/xpcom/build/nsXPComInit.cpp +++ b/mozilla/xpcom/build/nsXPComInit.cpp @@ -358,10 +358,10 @@ static const nsModuleComponentInfo components[] = { const int components_length = sizeof(components) / sizeof(components[0]); -static const PRStaticLinkTable sGlueSymbols[] = { +static const PRStaticLinkTable sGlueSymbols[] = { { "NS_GetFrozenFunctions", (void (* PR_CALLBACK)())&NS_GetFrozenFunctions -} ; +} } ; // gMemory will be freed during shutdown. static nsIMemory* gMemory = nsnull;