diff options
| author | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2016-02-09 16:23:28 +0900 |
|---|---|---|
| committer | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | 2016-02-09 16:24:11 +0900 |
| commit | ac50ff4d3826924532f0a6180efe39a40860db55 (patch) | |
| tree | 499a9632459652bb09a464eb7527b0346ae2df4d /main.cc | |
| parent | f3c9bbc015468207baa785695b0f3ce4f4b4e8fa (diff) | |
[C++] Report no-need-to-regen message to stderr
For consistency with regen.cc
Diffstat (limited to 'main.cc')
| -rw-r--r-- | main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ static int Run(const vector<Symbol>& targets, if (g_flags.generate_ninja && (g_flags.regen || g_flags.dump_kati_stamp)) { ScopedTimeReporter tr("regen check time"); if (!NeedsRegen(start_time, orig_args)) { - printf("No need to regenerate ninja file\n"); + fprintf(stderr, "No need to regenerate ninja file\n"); return 0; } if (g_flags.dump_kati_stamp) { |
