From f05e5000552cb6beaaaa996933cd63d19ca4414a Mon Sep 17 00:00:00 2001 From: Dwight Date: Mon, 30 Jun 2008 09:40:39 -0400 Subject: [PATCH] not hexadecimal --- db/query.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/query.cpp b/db/query.cpp index 85941b64490..da78bd4d789 100644 --- a/db/query.cpp +++ b/db/query.cpp @@ -339,7 +339,7 @@ string validateNS(const char *ns, NamespaceDetails *d) { bool valid = true; stringstream ss; ss << "\nvalidate\n"; - ss << " details: " << hex << d << " ofs:" << nsindex(ns)->detailsOffset(d) << endl; + ss << " details: " << hex << d << " ofs:" << nsindex(ns)->detailsOffset(d) << dec << endl; if( d->capped ) ss << " capped:" << d->capped << " max:" << d->max << '\n';