diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 15:23:21 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-11-02 15:23:21 -0500 |
commit | 36f134786fa0fee9656ccd6c3f2d8e0a84decf26 (patch) | |
tree | cff7a5e200b9d4ffd18dec25472459f63739104a /base | |
parent | d69bcc64924573ebdfc890fa9ddc2d7302ecee8a (diff) | |
download | gem5-36f134786fa0fee9656ccd6c3f2d8e0a84decf26.tar.xz |
I left a printf in on accident.
--HG--
extra : convert_revision : 5a5c0a8c28153f4cf4c3dbebd8f75096e4c4ea94
Diffstat (limited to 'base')
-rw-r--r-- | base/random.cc | 1 |
1 files changed, 0 insertions, 1 deletions
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); } |