Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bugzilla bug 221133: fixed unused variable warning on some platforms.
The patch is contributed by timeless@bemail.org.  r=wtc.
  • Loading branch information
wchang0222%aol.com committed Dec 19, 2003
2 parents 3d1bb8c + 23a9171 commit 335b841
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions security/nss/lib/fortcrypt/swfort/swfutl.c
Expand Up @@ -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
Expand Down

0 comments on commit 335b841

Please sign in to comment.