summaryrefslogtreecommitdiff
path: root/common/cli_hush.c
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2024-07-13 15:19:17 +0200
committerTom Rini <[email protected]>2024-07-15 12:12:17 -0600
commit910cef3d2fb955dd351142e07214390ce75ede13 (patch)
tree9a3eda5ce1882ccfbcb2e6a6b5ec84ddb20e3bc6 /common/cli_hush.c
parente569c73a8e43f0e5294d9059402f0bb2cd491fa6 (diff)
common: Remove duplicate newlines
Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'common/cli_hush.c')
-rw-r--r--common/cli_hush.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/common/cli_hush.c b/common/cli_hush.c
index 96a98209b9d..a6a8edce1f4 100644
--- a/common/cli_hush.c
+++ b/common/cli_hush.c
@@ -732,7 +732,6 @@ static int builtin_jobs(struct child_prog *child)
return EXIT_SUCCESS;
}
-
/* built-in 'pwd' handler */
static int builtin_pwd(struct child_prog *dummy)
{
@@ -784,7 +783,6 @@ static int builtin_set(struct child_prog *child)
return EXIT_SUCCESS;
}
-
/* Built-in 'shift' handler */
static int builtin_shift(struct child_prog *child)
{
@@ -1732,7 +1730,6 @@ static int run_pipe_real(struct pipe *pi)
pseudo_exec(child);
}
-
/* put our child in the process group whose leader is the
first process in this pipe */
if (pi->pgrp < 0) {
@@ -3409,7 +3406,6 @@ int hush_main(int argc, char * const *argv)
last_return_code=EXIT_SUCCESS;
-
if (argv[0] && argv[0][0] == '-') {
debug_printf("\nsourcing /etc/profile\n");
if ((input = fopen("/etc/profile", "r")) != NULL) {