From owner-cvs-gnu Thu Sep 18 07:00:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA07290 for cvs-gnu-outgoing; Thu, 18 Sep 1997 07:00:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA07169; Thu, 18 Sep 1997 06:59:45 -0700 (PDT) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id GAA05961; Thu, 18 Sep 1997 06:55:52 -0700 (PDT) Date: Thu, 18 Sep 1997 06:55:52 -0700 (PDT) Message-Id: <199709181355.GAA05961@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-gnu@FreeBSD.ORG Subject: cvs commit: src/gnu/usr.bin/as/config atof-ieee.c src/gnu/usr.bin/ld/rtld rtld.c src/gnu/usr.bin/man/man man.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk phk 1997/09/18 06:55:52 PDT Modified files: gnu/usr.bin/as/config atof-ieee.c gnu/usr.bin/ld/rtld rtld.c gnu/usr.bin/man/man man.c Log: Many places in the code NULL is used in integer context, where plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul Revision Changes Path 1.8 +2 -2 src/gnu/usr.bin/as/config/atof-ieee.c 1.49 +2 -2 src/gnu/usr.bin/ld/rtld/rtld.c 1.27 +2 -2 src/gnu/usr.bin/man/man/man.c