summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2004-04-29 00:41:08 +0000
committerwchang0222%aol.com <devnull@localhost>2004-04-29 00:41:08 +0000
commit9f0419c06eee2ef24b9c2a87724f140b0e06696d (patch)
tree4a6683b624ca88d8df58e656aa5fbde1da90d9d2
parented18621a76c6a08858a4fce0411ffd9c87e3fb3e (diff)
downloadnspr-hg-9f0419c06eee2ef24b9c2a87724f140b0e06696d.tar.gz
The return type of PR_GetMonitorEntryCount should be PRIntn.
Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
-rw-r--r--pr/src/pthreads/ptsynch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/src/pthreads/ptsynch.c b/pr/src/pthreads/ptsynch.c
index 9e3ad1e7..b318cab0 100644
--- a/pr/src/pthreads/ptsynch.c
+++ b/pr/src/pthreads/ptsynch.c
@@ -495,7 +495,7 @@ PR_IMPLEMENT(void) PR_DestroyMonitor(PRMonitor *mon)
/* The GC uses this; it is quite arguably a bad interface. I'm just
* duplicating it for now - XXXMB
*/
-PR_IMPLEMENT(PRInt32) PR_GetMonitorEntryCount(PRMonitor *mon)
+PR_IMPLEMENT(PRIntn) PR_GetMonitorEntryCount(PRMonitor *mon)
{
pthread_t self = pthread_self();
if (pthread_equal(mon->owner, self))