Browse Source

report hash in decimal

David Rose 22 years ago
parent
commit
b576d7833b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/downloader/downloadDb.cxx

+ 1 - 1
panda/src/downloader/downloadDb.cxx

@@ -482,7 +482,7 @@ write(ostream &out) const {
       << "    phase: " << _phase   << endl
       << "     size: " << _size    << endl
       << "   status: " << _status  << endl
-      << "     hash: " << _hash << endl;
+      << "     hash: " << _hash.as_dec() << endl;
   out << "--------------------------------------------------" << endl;
   pvector< PT(FileRecord) >::const_iterator i = _file_records.begin();
   for(; i != _file_records.end(); ++i) {