From daa692b64776f1e2552a198ae786d2e5f3b50620 Mon Sep 17 00:00:00 2001 From: kraai Date: Wed, 31 Jan 2001 19:00:21 +0000 Subject: Removed trailing \n from error_msg{,_and_die} messages. git-svn-id: svn://busybox.net/trunk/busybox@1732 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'df.c') diff --git a/df.c b/df.c index 7a24fedd0..55919793c 100644 --- a/df.c +++ b/df.c @@ -118,7 +118,7 @@ extern int df_main(int argc, char **argv) for(i = optind; i < argc; i++) { if ((mountEntry = find_mount_point(argv[i], mtab_file)) == 0) { - error_msg("%s: can't find mount point.\n", argv[i]); + error_msg("%s: can't find mount point.", argv[i]); status = EXIT_FAILURE; } else if (!df(mountEntry->mnt_fsname, mountEntry->mnt_dir)) status = EXIT_FAILURE; -- cgit v1.2.3-55-g6feb