From 9f0419c06eee2ef24b9c2a87724f140b0e06696d Mon Sep 17 00:00:00 2001 From: "wchang0222%aol.com" Date: Thu, 29 Apr 2004 00:41:08 +0000 Subject: The return type of PR_GetMonitorEntryCount should be PRIntn. Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH --- pr/src/pthreads/ptsynch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.1