From: Jim Meyering Date: Mon, 28 Mar 2005 17:59:54 +0000 (+0000) Subject: (find_mount_point, show_point): Use NULL, not `0'. X-Git-Tag: CPPI-1_12~1195 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=637eeea9bda0c8100b8e15041f50d121d972a472;p=thirdparty%2Fcoreutils.git (find_mount_point, show_point): Use NULL, not `0'. --- diff --git a/src/df.c b/src/df.c index c26144cfe7..176f89b895 100644 --- a/src/df.c +++ b/src/df.c @@ -1,5 +1,5 @@ /* df - summarize free disk space - Copyright (C) 91, 1995-2004 Free Software Foundation, Inc. + Copyright (C) 91, 1995-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -438,7 +438,7 @@ find_mount_point (const char *file, const struct stat *file_stat) { struct saved_cwd cwd; struct stat last_stat; - char *mp = 0; /* The malloced mount point path. */ + char *mp = NULL; /* The malloced mount point path. */ if (save_cwd (&cwd) != 0) { @@ -642,7 +642,7 @@ show_point (const char *point, const struct stat *statp) char *mp = find_mount_point (point, statp); if (mp) { - show_dev (0, mp, 0, false, false); + show_dev (NULL, mp, NULL, false, false); free (mp); } }