From owner-cvs-all@FreeBSD.ORG Wed Dec 1 10:29:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5D6816A4CE; Wed, 1 Dec 2004 10:29:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D81743D4C; Wed, 1 Dec 2004 10:29:20 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iB1ATKEY075306; Wed, 1 Dec 2004 10:29:20 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iB1ATKEs075305; Wed, 1 Dec 2004 10:29:20 GMT (envelope-from harti) Message-Id: <200412011029.iB1ATKEs075305@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 1 Dec 2004 10:29:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c hash.h job.c main.c make.c parse.c str.c suff.c targ.c var.c var_modify.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2004 10:29:20 -0000 harti 2004-12-01 10:29:20 UTC FreeBSD src repository Modified files: usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c hash.h job.c main.c make.c parse.c str.c suff.c targ.c var.c var_modify.c Log: Style: remove a lot of unnecessary casts, add some and spell the null pointer constant as NULL. Checked by: diff -r on the object files before and after Revision Changes Path 1.36 +19 -18 src/usr.bin/make/arch.c 1.20 +15 -14 src/usr.bin/make/buf.c 1.41 +13 -13 src/usr.bin/make/compat.c 1.30 +10 -8 src/usr.bin/make/cond.c 1.35 +46 -45 src/usr.bin/make/dir.c 1.24 +5 -4 src/usr.bin/make/for.c 1.20 +7 -14 src/usr.bin/make/hash.c 1.14 +1 -1 src/usr.bin/make/hash.h 1.63 +40 -45 src/usr.bin/make/job.c 1.103 +9 -11 src/usr.bin/make/main.c 1.27 +29 -29 src/usr.bin/make/make.c 1.61 +82 -83 src/usr.bin/make/parse.c 1.31 +6 -6 src/usr.bin/make/str.c 1.31 +132 -131 src/usr.bin/make/suff.c 1.28 +19 -19 src/usr.bin/make/targ.c 1.50 +47 -49 src/usr.bin/make/var.c 1.4 +18 -18 src/usr.bin/make/var_modify.c