From d882d2a965298bbed5b7cf8764757cf18490ac8f Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Thu, 14 Oct 1999 23:25:01 +0000 Subject: [PATCH] Bugsplat bug #365543: removed the PRIntn typecast in the definition of PR_TRUE and PR_FALSE. --- nsprpub/pr/include/prtypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsprpub/pr/include/prtypes.h b/nsprpub/pr/include/prtypes.h index cfa46ecaf76..fd3d084274f 100644 --- a/nsprpub/pr/include/prtypes.h +++ b/nsprpub/pr/include/prtypes.h @@ -341,8 +341,8 @@ typedef unsigned long PRUptrdiff; ** juast as you would C int-valued conditions. ************************************************************************/ typedef PRIntn PRBool; -#define PR_TRUE (PRIntn)1 -#define PR_FALSE (PRIntn)0 +#define PR_TRUE 1 +#define PR_FALSE 0 /************************************************************************ ** TYPES: PRPackedBool