diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-10-09 23:12:57 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-10-09 23:12:57 +0000 |
commit | 730e0ba06238fa61758ffeaca14090c110943208 (patch) | |
tree | 1adbb31681deae89bf4b8a6a5d28ebc27b7fb5c7 | |
parent | 3678b6ddb18c9dc56a774d232d15d9a8ca9b82e5 (diff) | |
download | FreeBSD-src-730e0ba06238fa61758ffeaca14090c110943208.zip FreeBSD-src-730e0ba06238fa61758ffeaca14090c110943208.tar.gz |
Add the missing ')' in
(p = f()) == NULL
-rw-r--r-- | share/man/man9/style.9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man9/style.9 b/share/man/man9/style.9 index 831ea33..0b48a99 100644 --- a/share/man/man9/style.9 +++ b/share/man/man9/style.9 @@ -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: |