diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2013-10-29 21:19:35 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2013-10-29 21:19:35 +0000 |
| commit | 844912db9a81ab302198068ec7dee4bc1a528856 (patch) | |
| tree | d489131bb173974f0634e44e6aa05c4c36d3bf8f | |
| parent | "fix" some "unused parameter" warnings (diff) | |
| download | inkscape-844912db9a81ab302198068ec7dee4bc1a528856.tar.gz inkscape-844912db9a81ab302198068ec7dee4bc1a528856.zip | |
btool: i know the whole multithread thing was a hack :-) so the fprinting should be done through fprint directly (seems to be more multithread resistant :), instead of through helper functions.
(bzr r12747)
| -rw-r--r-- | buildtool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtool.cpp b/buildtool.cpp index 5c3d19ada..c6aa6e127 100644 --- a/buildtool.cpp +++ b/buildtool.cpp @@ -7062,7 +7062,7 @@ public: { // taskstatus("compile of %s (req. by: %s)", // destFullName.c_str(), srcFullName.c_str()); - taskstatus("compile %s", srcFullName.c_str()); + fprintf(stdout, "compile %s\n", srcFullName.c_str()); compileMe = true; } else @@ -7148,7 +7148,7 @@ public: error("problem compiling: %s", errString.c_str()); errorOccurred = true; } else if (!errString.empty()) { - status("STDERR: \n%s\n", errString.c_str()); + fprintf(stdout, "STDERR: \n%s\n", errString.c_str()); } |
