mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 12:02:10 -05:00
missing semicolon
This commit is contained in:
parent
1d90a73d6d
commit
25303900d1
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: app.c,v 1.32 2000/11/29 01:50:49 gson Exp $ */
|
||||
/* $Id: app.c,v 1.33 2000/11/29 01:51:54 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -498,7 +498,7 @@ isc_app_run(void) {
|
|||
|
||||
result = evloop();
|
||||
if (result != ISC_R_SUCCESS)
|
||||
return (result)
|
||||
return (result);
|
||||
|
||||
while (isc__taskmgr_ready())
|
||||
(void)isc__taskmgr_dispatch();
|
||||
|
|
|
|||
Loading…
Reference in a new issue