about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-09-04 19:02:00 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2015-09-04 19:02:00 +0200
commitf97809ef44dad7cb553b63ddbe2cfeefda13922c (patch)
tree7690904d851d6550e7669ddda3af0e6eda4f0a1b
parent1b2ea59777bc7170556a91ce19675e80dca5690f (diff)
downloadredo-c-f97809ef44dad7cb553b63ddbe2cfeefda13922c.tar.gz
redo-c-f97809ef44dad7cb553b63ddbe2cfeefda13922c.tar.xz
redo-c-f97809ef44dad7cb553b63ddbe2cfeefda13922c.zip
Output "redo ..." lines to stderr
-rw-r--r--redo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo.c b/redo.c
index 4afb05c..5c77fa7 100644
--- a/redo.c
+++ b/redo.c
@@ -499,7 +499,7 @@ run_script(char *target, int implicit)
 	dprintf(dep_fd, "=%s %s\n", hashfile(fd), dofile);
 	close(fd);
 	
-	printf("redo%*.*s %s # %s\n", level*2, level*2, " ", orig_target, dofile);
+	fprintf(stderr, "redo%*.*s %s # %s\n", level*2, level*2, " ", orig_target, dofile);
 
 	pid = fork();
 	if (pid < 0) {