diff options
author | Jan Niklas Hasse <jhasse@bixense.com> | 2019-10-28 12:11:03 (GMT) |
---|---|---|
committer | Jan Niklas Hasse <jhasse@bixense.com> | 2019-10-28 12:11:03 (GMT) |
commit | 97c5949ffeb4ec84cec1290c118cf34aa0e503e4 (patch) | |
tree | 0044bfc6a000d258b458b1ff04bf8cd750b8e475 /src/build_log.cc | |
parent | ca5cddc27fc25ca3f1a6c50f24f833bb6ed9ee9c (diff) | |
download | Ninja-97c5949ffeb4ec84cec1290c118cf34aa0e503e4.zip Ninja-97c5949ffeb4ec84cec1290c118cf34aa0e503e4.tar.gz Ninja-97c5949ffeb4ec84cec1290c118cf34aa0e503e4.tar.bz2 |
Revert "1492 add column headers to .ninja_log"
This reverts commit cfd0bd3007b291df505f8c45083453310142d681.
See #1662.
Diffstat (limited to 'src/build_log.cc')
-rw-r--r-- | src/build_log.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/build_log.cc b/src/build_log.cc index 774f72f..c4a08a0 100644 --- a/src/build_log.cc +++ b/src/build_log.cc @@ -49,7 +49,6 @@ namespace { const char kFileSignature[] = "# ninja log v%d\n"; -const char kFileColumnLabels[] = "# start_time end_time mtime command hash\n"; const int kOldestSupportedVersion = 4; const int kCurrentVersion = 5; @@ -145,8 +144,7 @@ bool BuildLog::OpenForWrite(const string& path, const BuildLogUser& user, fseek(log_file_, 0, SEEK_END); if (ftell(log_file_) == 0) { - if (fprintf(log_file_, kFileSignature, kCurrentVersion) < 0 || - fprintf(log_file_, kFileColumnLabels) < 0) { + if (fprintf(log_file_, kFileSignature, kCurrentVersion) < 0) { *err = strerror(errno); return false; } |