summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc <devnull@localhost>1998-05-27 23:21:10 +0000
committerwtc <devnull@localhost>1998-05-27 23:21:10 +0000
commitfc4d5f7027656cf437e742676b8e2eaa36d34f2b (patch)
treed73f84f8ce85665b2a6150e933076db63633fcb0
parent6753300bdadb9b7d64e34ffbacaec777655dac08 (diff)
downloadnspr-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.c2
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;