diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2007-10-25 05:36:02 +0000 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2007-10-25 05:36:02 +0000 |
commit | 81ed6e6c6f10796f7111318a7029d80bce3028dd (patch) | |
tree | aafb4322faa3841cbf2b9fadf1023b564cc0bd82 | |
parent | 0d84e4ccb97b6dfa1c8022a93c9f3af129359140 (diff) |
A couple of comment typo fixes.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1951 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | src/pulsecore/asyncmsgq.c | 2 | ||||
-rw-r--r-- | src/pulsecore/asyncmsgq.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/asyncmsgq.c b/src/pulsecore/asyncmsgq.c index 9910f651..96b43a71 100644 --- a/src/pulsecore/asyncmsgq.c +++ b/src/pulsecore/asyncmsgq.c @@ -134,7 +134,7 @@ void pa_asyncmsgq_post(pa_asyncmsgq *a, pa_msgobject *object, int code, const vo pa_memchunk_reset(&i->memchunk); i->semaphore = NULL; - /* Thus mutex makes the queue multiple-writer safe. This lock is only used on the writing side */ + /* This mutex makes the queue multiple-writer safe. This lock is only used on the writing side */ pa_mutex_lock(a->mutex); pa_assert_se(pa_asyncq_push(a->asyncq, i, 1) == 0); pa_mutex_unlock(a->mutex); diff --git a/src/pulsecore/asyncmsgq.h b/src/pulsecore/asyncmsgq.h index 393bb0b1..5d3867ba 100644 --- a/src/pulsecore/asyncmsgq.h +++ b/src/pulsecore/asyncmsgq.h @@ -45,7 +45,7 @@ * A memchunk (may be NULL) * * There are two functions for submitting messages: _post and - * _send. The fromer just enqueues the message asynchronously, the + * _send. The former just enqueues the message asynchronously, the * latter waits for completion, synchronously. */ enum { |