Add the missing ')' in

(p = f()) == NULL
This commit is contained in:
Chris Piazza 1999-10-09 23:12:57 +00:00
parent cc76155d40
commit 133dba33b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52075

View File

@ -394,7 +394,7 @@ might not be in scope.)
Test pointers
against NULL, e.g., use:
.Bd -literal -offset 0i
(p = f()) == NULL
(p = f()) == NULL)
.Ed
.Pp
not: