diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
commit | 8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch) | |
tree | d116498a9604b21bf16d82850fcf1726939a4f6a /lib/libc/db | |
parent | 9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff) |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'lib/libc/db')
-rw-r--r-- | lib/libc/db/hash/hash_bigkey.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/db/hash/hash_bigkey.c b/lib/libc/db/hash/hash_bigkey.c index be9e1dfeec8..fa30fba831e 100644 --- a/lib/libc/db/hash/hash_bigkey.c +++ b/lib/libc/db/hash/hash_bigkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash_bigkey.c,v 1.12 2003/06/02 20:18:33 millert Exp $ */ +/* $OpenBSD: hash_bigkey.c,v 1.13 2003/08/06 21:08:05 millert Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -36,7 +36,7 @@ #if 0 static char sccsid[] = "@(#)hash_bigkey.c 8.3 (Berkeley) 5/31/94"; #else -static const char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.12 2003/06/02 20:18:33 millert Exp $"; +static const char rcsid[] = "$OpenBSD: hash_bigkey.c,v 1.13 2003/08/06 21:08:05 millert Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -608,7 +608,7 @@ __big_split(hashp, op, np, big_keyp, addr, obucket, ret) if ((ret->next_addr = __find_last_page(hashp, &big_keyp))) { if (!(ret->nextp = __get_buf(hashp, ret->next_addr, big_keyp, 0))) - return (-1);; + return (-1); } else ret->nextp = NULL; |