diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T13·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-25T13·32+0000 |
commit | 49829da8b450a1e869168428171334e6d9d0eb45 (patch) | |
tree | f7643954d795e798491733f3cca3bff6dbafd96e /src/libutil | |
parent | b428adc267f23441be2f801239641aaf8419e4ba (diff) |
* Doh.
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/hash.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 372826f31d2d..70604a50a342 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -257,7 +257,6 @@ Hash hashString(HashType ht, const string & s) start(ht, ctx); update(ht, ctx, (const unsigned char *) s.c_str(), s.length()); finish(ht, ctx, hash.hash); - //printMsg(lvlError, format("hashString %1% --> %2%:\n%3%\n===========END======") % s.size() % printHash(hash) % s); return hash; } |