From b576d7833b2163ced4888f673d76f38670208a91 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 26 Sep 2003 23:29:24 +0000 Subject: [PATCH] report hash in decimal --- panda/src/downloader/downloadDb.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/downloader/downloadDb.cxx b/panda/src/downloader/downloadDb.cxx index 683e5d9d5c..438cce7af1 100644 --- a/panda/src/downloader/downloadDb.cxx +++ b/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) {