1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Change "... myfunction() { ... }" to "... myfunction(void) { ... }" in a few pla

ces. Ticket #3783. (CVS 6462)

FossilOrigin-Name: 6f79e6ae0d30948db4ba26bb5b448c15c470464f
This commit is contained in:
danielk1977
2009-04-07 11:21:28 +00:00
parent c4d201c632
commit 64aca19127
7 changed files with 23 additions and 23 deletions

View File

@@ -10,7 +10,7 @@
**
*************************************************************************
**
** $Id: test_async.c,v 1.56 2009/03/28 18:56:14 drh Exp $
** $Id: test_async.c,v 1.57 2009/04/07 11:21:29 danielk1977 Exp $
**
** This file contains an example implementation of an asynchronous IO
** backend for SQLite.
@@ -642,7 +642,7 @@ static void addAsyncWrite(AsyncWrite *pWrite){
/*
** Increment async.nFile in a thread-safe manner.
*/
static void incrOpenFileCount(){
static void incrOpenFileCount(void){
/* We must hold the queue mutex in order to modify async.nFile */
pthread_mutex_lock(&async.queueMutex);
if( async.nFile==0 ){