From fb3a6729a5fa143b98bbf61226a4513f633a5a84 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 --- xpcom/build/nsXPComInit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/build/nsXPComInit.cpp b/xpcom/build/nsXPComInit.cpp index ae4679e27975..c4b6f8767759 100644 --- a/xpcom/build/nsXPComInit.cpp +++ b/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;