diff options
author | wtc <devnull@localhost> | 1998-05-27 23:21:10 +0000 |
---|---|---|
committer | wtc <devnull@localhost> | 1998-05-27 23:21:10 +0000 |
commit | fc4d5f7027656cf437e742676b8e2eaa36d34f2b (patch) | |
tree | d73f84f8ce85665b2a6150e933076db63633fcb0 | |
parent | 6753300bdadb9b7d64e34ffbacaec777655dac08 (diff) | |
download | nspr-hg-fc4d5f7027656cf437e742676b8e2eaa36d34f2b.tar.gz |
Removed unused variables. Thanks to Wei Tsang Ooi
<weitsang@cs.cornell.edu> for the patch.
-rw-r--r-- | pr/src/io/prlog.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pr/src/io/prlog.c b/pr/src/io/prlog.c index 1ab6a9b4..62d79bf4 100644 --- a/pr/src/io/prlog.c +++ b/pr/src/io/prlog.c @@ -257,9 +257,7 @@ static void _PR_SetLogModuleLevel( PRLogModuleInfo *lm ) ev = PR_GetEnv("NSPR_LOG_MODULES"); if (ev && ev[0]) { char module[64]; - PRBool isSync = PR_FALSE; PRIntn evlen = strlen(ev), pos = 0; - PRInt32 bufSize = DEFAULT_BUF_SIZE; while (pos < evlen) { PRIntn level = 1, count = 0, delta = 0; PRLogModuleInfo *lm = logModules; |