From b16674f3c1a961e0b5d6a57745f5f749d95c641e Mon Sep 17 00:00:00 2001 From: andersen Date: Mon, 15 Mar 2004 08:29:22 +0000 Subject: Remove trailing whitespace. Update copyright to include 2004. git-svn-id: svn://busybox.net/trunk/busybox@8630 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/install.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'coreutils/install.c') diff --git a/coreutils/install.c b/coreutils/install.c index 82773b8de..305e02b0d 100644 --- a/coreutils/install.c +++ b/coreutils/install.c @@ -48,7 +48,7 @@ static const struct option install_long_options[] = { { "owner", 0, NULL, 'o' }, { 0, 0, 0, 0 } }; - + extern int install_main(int argc, char **argv) { struct stat statbuf; @@ -116,7 +116,7 @@ extern int install_main(int argc, char **argv) } return(ret); } - + cp_mv_stat2(argv[argc - 1], &statbuf, lstat); for (i = optind; i < argc - 1; i++) { unsigned char *dest; @@ -137,15 +137,15 @@ extern int install_main(int argc, char **argv) /* Set the user and group id */ if (lchown(dest, uid, gid) == -1) { bb_perror_msg("cannot change ownership of %s", dest); - ret = EXIT_FAILURE; + ret = EXIT_FAILURE; } if (flags & INSTALL_OPT_STRIP) { if (execlp("strip", "strip", dest, NULL) == -1) { bb_error_msg("strip failed"); - ret = EXIT_FAILURE; + ret = EXIT_FAILURE; } } } - + return(ret); } -- cgit v1.2.3-55-g6feb