summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>2000-01-01 22:45:52 +0000
committercls%seawood.org <devnull@localhost>2000-01-01 22:45:52 +0000
commit14c49767192261a9cdace22fd9ec68ea43737e95 (patch)
tree366beec3b18289d2da9c8a39c097b4809fc1d92f
parent6372b2cd4456d0df2884e2d942afd4f4610a1414 (diff)
downloadnss-hg-14c49767192261a9cdace22fd9ec68ea43737e95.tar.gz
-rw-r--r--dbm/src/h_bigkey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbm/src/h_bigkey.c b/dbm/src/h_bigkey.c
index a0980a29c..48377d248 100644
--- a/dbm/src/h_bigkey.c
+++ b/dbm/src/h_bigkey.c
@@ -429,7 +429,7 @@ __big_return(
}
val->size = collect_data(hashp, bufp, (int)len, set_current);
- if ((val->size + 1) == 0) // unsigned ints are not really negative
+ if ((val->size + 1) == 0) /* unsigned ints are not really negative */
return (-1);
if (save_p->addr != save_addr) {
/* We are pretty short on buffers. */
@@ -515,7 +515,7 @@ __big_keydata(
int set)
{
key->size = collect_key(hashp, bufp, 0, val, set);
- if ((key->size + 1) == 0) // same compile warning about comparing signed and unsigned
+ if ((key->size + 1) == 0) /* same compile warning about comparing signed and unsigned */
return (-1);
key->data = (uint8 *)hashp->tmp_key;
return (0);