From 01648d4495f6e239d1925d57516da99652d64a55 Mon Sep 17 00:00:00 2001 From: KO Myung-Hun Date: Thu, 11 Jun 2015 22:44:00 +0900 Subject: [PATCH] scriptexec: cosmetic --- exec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exec.c b/exec.c index b883c06..e44063a 100644 --- a/exec.c +++ b/exec.c @@ -962,8 +962,7 @@ scriptexec(struct op *tp, const char **ap) * Search shell/interpreter name without directory in PATH * if specified path does not exist */ - if (ksh_vstrchr_dirsep(sh) && !search_path(sh, path, X_OK, NULL)) - { + if (ksh_vstrchr_dirsep(sh) && !search_path(sh, path, X_OK, NULL)) { cp = search_path(_getname(sh), path, X_OK, NULL); if (cp) sh = cp;