Bug 443760: Removed an extra semicolon. The patch is contributed by

Jesse Ruderman <jruderman@gmail.com>.  r=wtc.
This commit is contained in:
wtc%google.com 2008-07-12 04:06:07 +00:00
Родитель bfae314a44
Коммит 9c8b38291a
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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 */
}