From d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Fri, 14 Jul 2000 01:51:25 +0000 Subject: Use errorMsg rather than fprintf. --- coreutils/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/df.c') diff --git a/coreutils/df.c b/coreutils/df.c index ba3227f30..62226ceb8 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -82,7 +82,7 @@ extern int df_main(int argc, char **argv) } while (argc > 1) { if ((mountEntry = findMountPoint(argv[1], mtab_file)) == 0) { - fprintf(stderr, "%s: can't find mount point.\n", argv[1]); + errorMsg("%s: can't find mount point.\n", argv[1]); exit(FALSE); } status = df(mountEntry->mnt_fsname, mountEntry->mnt_dir); -- cgit v1.2.3