diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-07-13 17:24:55 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-07-13 17:24:55 +0000 |
commit | 97c58f066a088d225583d352253e44c7bd46c9f5 (patch) | |
tree | 65cd67cdfe5824acf49aac6c21525482b0f23825 /src/common/compat.c | |
parent | 278bac421f37ffb4f69b25e3132051e3f1028680 (diff) | |
download | tor-97c58f066a088d225583d352253e44c7bd46c9f5.tar.gz tor-97c58f066a088d225583d352253e44c7bd46c9f5.zip |
whitespace fixes
svn:r4544
Diffstat (limited to 'src/common/compat.c')
-rw-r--r-- | src/common/compat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index b1ec7ef640..4da5d0da6e 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -923,12 +923,12 @@ tor_mutex_acquire(tor_mutex_t *m) r = WaitForSingleObject(m->handle, INFINITE); switch (r) { case WAIT_ABANDONED: /* holding thread exited. */ - case WAIT_OBJECT_0: /* we got the mutex normally. */ + case WAIT_OBJECT_0: /* we got the mutex normally. */ break; case WAIT_TIMEOUT: /* Should never happen. */ - tor_assert(0); + tor_assert(0); break; - case WAIT_FAILED: + case WAIT_FAILED: log_fn(LOG_WARN, "Failed to acquire mutex: %d", GetLastError()); } } |