summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2003-12-19 16:35:14 +0000
committerwchang0222%aol.com <devnull@localhost>2003-12-19 16:35:14 +0000
commit64fa3b938cc1ca5a220e663234e98c05c8e5b9cf (patch)
treecd5278bb9dc57232c1222f40bb1cfb4f3c7fffe4
parent0ccca0b90775a62fa575ecef481a4456a670c60c (diff)
parent0676f303896a3cab2aaf38cb35d178aee3eb6d90 (diff)
downloadnss-hg-64fa3b938cc1ca5a220e663234e98c05c8e5b9cf.tar.gz
Bugzilla bug 221133: fixed unused variable warning on some platforms.
The patch is contributed by timeless@bemail.org. r=wtc.
-rw-r--r--security/nss/lib/fortcrypt/swfort/swfutl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/security/nss/lib/fortcrypt/swfort/swfutl.c b/security/nss/lib/fortcrypt/swfort/swfutl.c
index eee677f65..c725bbad1 100644
--- a/security/nss/lib/fortcrypt/swfort/swfutl.c
+++ b/security/nss/lib/fortcrypt/swfort/swfutl.c
@@ -703,7 +703,9 @@ static int path_table_size = sizeof(path_table)/sizeof(path_table[0]);
char *fort_LookupFORTEZZAInitFile(void)
{
char *fname = NULL;
+#if defined(XP_UNIX) || defined(XP_WIN)
char *home = NULL;
+#endif
#ifdef XP_UNIX
char unix_home[512];
#endif