diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-04-07 11:21:28 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-04-07 11:21:28 +0000 |
commit | 64aca19127b925f72f1655950609d112185b1ac2 (patch) | |
tree | b30919210c897b659602646dd224b6d622458d1f /src/test_async.c | |
parent | c4d201c632ae0f5daae3a60918e3e43bd40d0088 (diff) | |
download | sqlite-64aca19127b925f72f1655950609d112185b1ac2.tar.gz sqlite-64aca19127b925f72f1655950609d112185b1ac2.zip |
Change "... myfunction() { ... }" to "... myfunction(void) { ... }" in a few pla
ces. Ticket #3783. (CVS 6462)
FossilOrigin-Name: 6f79e6ae0d30948db4ba26bb5b448c15c470464f
Diffstat (limited to 'src/test_async.c')
-rw-r--r-- | src/test_async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_async.c b/src/test_async.c index 25dc922b7..40cd65d16 100644 --- a/src/test_async.c +++ b/src/test_async.c @@ -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 ){ |