eliminate compiler warnings when DEBUG_THREADS is enabled

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6313 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-08-09 15:37:33 +00:00
parent ce7a1e4768
commit 957eed7682
3 changed files with 19 additions and 3 deletions

View File

@@ -228,7 +228,7 @@ static void *do_devstate_changes(void *data)
} else {
/* there was no entry, so atomically unlock the list and wait for
the condition to be signalled (returns with the lock held) */
pthread_cond_wait(&change_pending, &state_changes.lock);
ast_pthread_cond_wait(&change_pending, &state_changes.lock);
}
}