diff options
author | drh <drh@noemail.net> | 2011-06-20 21:47:58 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-06-20 21:47:58 +0000 |
commit | ef8662bb650e2d79547fac4972287bd7ae70e74c (patch) | |
tree | add264943b1d960c8e80272bdbd0dff7aa4325ce /src/test_thread.c | |
parent | 2a0b9ef0649076690d22aa441382a57e330d648f (diff) | |
download | sqlite-ef8662bb650e2d79547fac4972287bd7ae70e74c.tar.gz sqlite-ef8662bb650e2d79547fac4972287bd7ae70e74c.zip |
Fix more documentation typos.
FossilOrigin-Name: b9cbab739a62f497545161f30195272f4e687a7f
Diffstat (limited to 'src/test_thread.c')
-rw-r--r-- | src/test_thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test_thread.c b/src/test_thread.c index ef191bc2d..3a13dd668 100644 --- a/src/test_thread.c +++ b/src/test_thread.c @@ -404,9 +404,9 @@ static int clock_seconds_proc( */ typedef struct UnlockNotification UnlockNotification; struct UnlockNotification { - int fired; /* True after unlock event has occured */ - pthread_cond_t cond; /* Condition variable to wait on */ - pthread_mutex_t mutex; /* Mutex to protect structure */ + int fired; /* True after unlock event has occurred */ + pthread_cond_t cond; /* Condition variable to wait on */ + pthread_mutex_t mutex; /* Mutex to protect structure */ }; /* |