aboutsummaryrefslogtreecommitdiff
path: root/src/test_thread.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-06-20 21:47:58 +0000
committerdrh <drh@noemail.net>2011-06-20 21:47:58 +0000
commitef8662bb650e2d79547fac4972287bd7ae70e74c (patch)
treeadd264943b1d960c8e80272bdbd0dff7aa4325ce /src/test_thread.c
parent2a0b9ef0649076690d22aa441382a57e330d648f (diff)
downloadsqlite-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.c6
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 */
};
/*