if ((foo = bar()) != 0)

to
	foo = bar();
	if (foo != 0)

Submitted by:	phk
This commit is contained in:
Ben Smithurst 2001-02-21 20:43:55 +00:00
parent d8d11df0a1
commit 31e230ad42
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72810

View File

@ -348,7 +348,8 @@ or
.Sq \&)
characters.
.Bd -literal
if ((error = function(a1, a2)) != 0)
error = function(a1, a2);
if (error != 0)
exit(error);
.Ed
.Pp