summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/os.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-10-03 17:00:00 +0000
committerBenny Prijono <bennylp@teluu.com>2006-10-03 17:00:00 +0000
commit94e10f945499dd393ddacf8375af393335853f1a (patch)
treef4f905e94ed7fdd2ccf1a46fce31d3c3406dd3a5 /pjlib/include/pj/os.h
parentf21319f288dfd1703311e09b38a21bd552c2b088 (diff)
Fixed minor error in pj_thread_is_registered() API. The return value should be pj_bool_t instead of pj_status_t. (Note: this change should not break anything).
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@746 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/os.h')
-rw-r--r--pjlib/include/pj/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjlib/include/pj/os.h b/pjlib/include/pj/os.h
index 2720e7f7..98a94c37 100644
--- a/pjlib/include/pj/os.h
+++ b/pjlib/include/pj/os.h
@@ -134,7 +134,7 @@ PJ_DECL(pj_status_t) pj_thread_register ( const char *thread_name,
*
* @return Non-zero if it is registered.
*/
-PJ_DECL(pj_status_t) pj_thread_is_registered(void);
+PJ_DECL(pj_bool_t) pj_thread_is_registered(void);
/**