From: Ali Saidi Date: Wed, 2 Nov 2005 20:23:21 +0000 (-0500) Subject: I left a printf in on accident. X-Git-Tag: m5_2.0_beta1~316 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=36f134786fa0fee9656ccd6c3f2d8e0a84decf26;p=gem5.git I left a printf in on accident. --HG-- extra : convert_revision : 5a5c0a8c28153f4cf4c3dbebd8f75096e4c4ea94 --- diff --git a/base/random.cc b/base/random.cc index babe93db5..cfa94b5e3 100644 --- a/base/random.cc +++ b/base/random.cc @@ -67,7 +67,6 @@ getUniform(int64_t maxmin) { double r; r = (drand48() - 0.500) * 2 * maxmin; - DPRINTFN("getUniform %f\n", r); return (int64_t)round(r); }