mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-10 09:19:28 +00:00
The return type of PR_GetMonitorEntryCount should be PRIntn.
This commit is contained in:
parent
7273b9862e
commit
7cb7f64177
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user