diff options
author | mistachkin <mistachkin@noemail.net> | 2012-12-07 09:08:42 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2012-12-07 09:08:42 +0000 |
commit | 88be0144fbb753e3f6b29446c747b802a12610ad (patch) | |
tree | 263c1e46d5eff1e2dde22ad1a62091bdc147e6a5 /ext/async/sqlite3async.h | |
parent | 46af59e96c6a6f9faa9ccd1af5e982342d72c1a5 (diff) | |
download | sqlite-88be0144fbb753e3f6b29446c747b802a12610ad.tar.gz sqlite-88be0144fbb753e3f6b29446c747b802a12610ad.zip |
Spelling and header fixes for the async extension.
FossilOrigin-Name: 930ba85262b76e8b1555bcfe4637135c27e04d58
Diffstat (limited to 'ext/async/sqlite3async.h')
-rw-r--r-- | ext/async/sqlite3async.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/async/sqlite3async.h b/ext/async/sqlite3async.h index 143cdc770..5b20d7189 100644 --- a/ext/async/sqlite3async.h +++ b/ext/async/sqlite3async.h @@ -75,7 +75,7 @@ int sqlite3async_initialize(const char *zParent, int isDefault); ** On win32 platforms, this function also releases the small number of ** critical section and event objects created by sqlite3async_initialize(). */ -void sqlite3async_shutdown(); +void sqlite3async_shutdown(void); /* ** This function may only be called when the asynchronous IO VFS is @@ -94,7 +94,7 @@ void sqlite3async_shutdown(); ** If multiple simultaneous calls are made to sqlite3async_run() from two ** or more threads, then the calls are serialized internally. */ -void sqlite3async_run(); +void sqlite3async_run(void); /* ** This function may only be called when the asynchronous IO VFS is |