Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Feb 2001 04:10:19 -0800 (PST)
From:      Ben Smithurst <ben@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/share/man/man9 style.9
Message-ID:  <200102211210.f1LCAKN41997@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
ben         2001/02/21 04:10:19 PST

  Modified files:
    share/man/man9       style.9 
  Log:
  Don't suggest
  
  	if (error = function(a1, a2))
  
  since it causes a warning with -Wall.  Change it so it has an explicit test
  against zero,
  
  	if ((error = function(a1, a2)) != 0)
  
  Revision  Changes    Path
  1.44      +2 -2      src/share/man/man9/style.9


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200102211210.f1LCAKN41997>