summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2008-07-12 04:06:07 +0000
committerwtc%google.com <devnull@localhost>2008-07-12 04:06:07 +0000
commitdcb28ee5e55fd4db73688ec0972c1ea2107aedfb (patch)
treedb515ba1118bc1d7d4c52227b7c2a6bf9463c75a
parentb6f20e0406b4aa0f437383d3e0a616ef10d528ba (diff)
downloadnss-hg-dcb28ee5e55fd4db73688ec0972c1ea2107aedfb.tar.gz
Bug 443760: Removed an extra semicolon. The patch is contributed by
Jesse Ruderman <jruderman@gmail.com>. r=wtc.
-rw-r--r--dbm/tests/lots.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbm/tests/lots.c b/dbm/tests/lots.c
index 20b86c594..ea8bc6ea2 100644
--- a/dbm/tests/lots.c
+++ b/dbm/tests/lots.c
@@ -1,4 +1,4 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
@@ -205,10 +205,10 @@ SeqDatabase()
ReportStatus("SEQuencing through database...");
- /* seq throught the whole database */
+ /* seq through the whole database */
if(!(status = (*database->seq)(database, &key, &data, R_FIRST)))
{
- while(!(status = (database->seq) (database, &key, &data, R_NEXT)));
+ while(!(status = (database->seq) (database, &key, &data, R_NEXT)))
; /* null body */
}