summaryrefslogtreecommitdiff
path: root/dbm
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-10-09 21:23:11 +0000
committerwtc%netscape.com <devnull@localhost>2001-10-09 21:23:11 +0000
commit467227541dc282978dfeeaddd9b95e71d9727aa0 (patch)
treecf7a050051a691a7bc4e469ba30086b9f535e521 /dbm
parent1abd7247ffb4244a6e0576058bb961d562762e8e (diff)
downloadnss-hg-467227541dc282978dfeeaddd9b95e71d9727aa0.tar.gz
Fix a compiler warning (comparision between signed and unsigned). The
return value of strlen() is size_t.
Diffstat (limited to 'dbm')
-rw-r--r--dbm/src/h_page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbm/src/h_page.c b/dbm/src/h_page.c
index 2c4b50f87..ed8231665 100644
--- a/dbm/src/h_page.c
+++ b/dbm/src/h_page.c
@@ -1166,7 +1166,7 @@ open_temp(HTAB *hashp)
sigset_t set, oset;
#endif
char * tmpdir;
- int len;
+ size_t len;
static const char namestr[] = "/_hashXXXXXX";
char filename[1024];
char last;