Minor formatting fix when outputting the statcache file.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Tue, 19 Jun 2007 00:45:55 +0000 (17:45 -0700)
committerMichael Vrable <mvrable@turin.ucsd.edu>
Tue, 19 Jun 2007 00:45:55 +0000 (17:45 -0700)
statcache.cc

index 71f6b36..03cfd95 100644 (file)
@@ -70,6 +70,8 @@ void StatCache::Save(const string &path, struct stat *stat_buf,
               << "checksum: " << checksum << "\n";
 
     *newcache << "blocks:";
+    if (blocks.size() == 0)
+        *newcache << "\n";
     for (list<string>::const_iterator i = blocks.begin();
          i != blocks.end(); ++i) {
         *newcache << " " << *i << "\n";