summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-09-07 03:44:32 +0000
committerStef Walter <stef@memberwebs.com>2004-09-07 03:44:32 +0000
commite88489bc5d48f56acc05c3fce6ecaa3fabda8f4a (patch)
treef8d213cc74cb35d8235b81265885474a2b699d3d
parentc2460100faec2708a3abe1e57017f53c525beccf (diff)
- Fixed warnings
-rw-r--r--common/stringx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/stringx.c b/common/stringx.c
index 96c631b..1067f27 100644
--- a/common/stringx.c
+++ b/common/stringx.c
@@ -244,12 +244,12 @@ void plock()
#endif
#ifdef _DEBUG
- r = pthread_mutex_trylock(&(g_state->mutex));
+ r = pthread_mutex_trylock((pthread_mutex_t*)&(g_state->mutex));
if(r == EBUSY)
{
wait = 1;
message(NULL, LOG_DEBUG, "thread will block: %d", pthread_self());
- r = pthread_mutex_lock(&(g_state->mutex));
+ r = pthread_mutex_lock((pthread_mutex_t*)&(g_state->mutex));
}
#else
@@ -273,7 +273,7 @@ void plock()
void punlock()
{
- int r = pthread_mutex_unlock(&(g_state->mutex));
+ int r = pthread_mutex_unlock((pthread_mutex_t*)&(g_state->mutex));
if(r != 0)
{
errno = r;