summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/freeif.c
diff options
context:
space:
mode:
Diffstat (limited to 'nsprpub/pr/tests/freeif.c')
-rw-r--r--nsprpub/pr/tests/freeif.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/nsprpub/pr/tests/freeif.c b/nsprpub/pr/tests/freeif.c
index edf005e49..1d38d0e31 100644
--- a/nsprpub/pr/tests/freeif.c
+++ b/nsprpub/pr/tests/freeif.c
@@ -27,16 +27,20 @@ int main(int argc, char **argv)
char *ptr = NULL;
/* this fails to compile with the old definition of PR_DELETE */
- if (foo)
+ if (foo) {
PR_DELETE(ptr);
- else
+ }
+ else {
Noop();
+ }
/* this nests incorrectly with the old definition of PR_FREEIF */
- if (foo)
+ if (foo) {
PR_FREEIF(ptr);
- else
+ }
+ else {
Fail();
+ }
printf("PASS\n");
return 0;