summaryrefslogtreecommitdiffstats
path: root/common/hush.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-09-24 16:59:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-09-24 16:59:07 +0200
commitddfa0c174eae92db9576499c4f4eed66765373c8 (patch)
tree73b3f397946f716c1f8032e18847011cea62e846 /common/hush.c
parentd4ba2f9001cc9ecc44d1afcacf5cc044e4233933 (diff)
downloadbarebox-ddfa0c174eae92db9576499c4f4eed66765373c8.tar.gz
barebox-ddfa0c174eae92db9576499c4f4eed66765373c8.tar.xz
remove debug printf
Diffstat (limited to 'common/hush.c')
-rw-r--r--common/hush.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/hush.c b/common/hush.c
index 3323f88dfa..ced60271cc 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -537,7 +537,6 @@ static int run_pipe_real(struct pipe *pi)
return execute_script(child->argv[i], child->argc-i, &child->argv[i]);
}
if ((path = find_execable(child->argv[i]))) {
- printf("path: %s\n", path);
ret = execute_script(path, child->argc-i, &child->argv[i]);
free(path);
return ret;