From owner-cvs-all Fri May 17 4:16:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B21C37B408; Fri, 17 May 2002 04:16:49 -0700 (PDT) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g4HBGnr92644; Fri, 17 May 2002 04:16:49 -0700 (PDT) (envelope-from jmallett) Message-Id: <200205171116.g4HBGnr92644@freefall.freebsd.org> From: "J. Mallett" Date: Fri, 17 May 2002 04:16:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/tee tee.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2002/05/17 04:16:49 PDT Modified files: usr.bin/tee tee.c Log: Revert part of the previous revision. Changing exit() to return() in main() is wrong, even though our C compiler doesn't understand that exit() eats control of the program, and as such can sometimes complain that main() reaches the bottom of its body without an explicit return(). Aside from that, the functional usefulness of changing it is effectively nil, so back it out. Submitted by: mike Revision Changes Path 1.8 +1 -1 src/usr.bin/tee/tee.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message