fixes a gcc warning about a partially-bracketed initializer. patch by dbaron, r=me, b=168584

This commit is contained in:
dougt%netscape.com 2002-09-15 20:59:29 +00:00
Родитель f203245ef0
Коммит fb3a6729a5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;