summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/build_log.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_log.cc b/src/build_log.cc
index 65567da..4ee7cf1 100644
--- a/src/build_log.cc
+++ b/src/build_log.cc
@@ -58,7 +58,7 @@ bool BuildLog::Load(const string& path, string* err) {
return false;
}
- char buf[4 << 10];
+ char buf[256 << 10];
while (fgets(buf, sizeof(buf), file)) {
char* start = buf;
char* end = strchr(start, ' ');