summaryrefslogtreecommitdiff
path: root/pr/src/io/prfdcach.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/src/io/prfdcach.c')
-rw-r--r--pr/src/io/prfdcach.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pr/src/io/prfdcach.c b/pr/src/io/prfdcach.c
index 17b71fe6..255f4632 100644
--- a/pr/src/io/prfdcach.c
+++ b/pr/src/io/prfdcach.c
@@ -160,7 +160,7 @@ PR_IMPLEMENT(PRStatus) PR_SetFDCacheSize(PRIntn low, PRIntn high)
if (!_pr_initialized) _PR_ImplicitInitialization();
if (low > high) low = high; /* sanity check the params */
-
+
PR_Lock(_pr_fd_cache.ml);
_pr_fd_cache.limit_high = high;
_pr_fd_cache.limit_low = low;
@@ -179,7 +179,7 @@ void _PR_InitFdCache(void)
const char *low = PR_GetEnv("NSPR_FD_CACHE_SIZE_LOW");
const char *high = PR_GetEnv("NSPR_FD_CACHE_SIZE_HIGH");
- /*
+ /*
** _low is allowed to be zero, _high is not.
** If _high is zero, we're not doing the caching.
*/