projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d69bcc6
)
I left a printf in on accident.
author
Ali Saidi
<saidi@eecs.umich.edu>
Wed, 2 Nov 2005 20:23:21 +0000
(15:23 -0500)
committer
Ali Saidi
<saidi@eecs.umich.edu>
Wed, 2 Nov 2005 20:23:21 +0000
(15:23 -0500)
--HG--
extra : convert_revision :
5a5c0a8c28153f4cf4c3dbebd8f75096e4c4ea94
base/random.cc
patch
|
blob
|
history
diff --git
a/base/random.cc
b/base/random.cc
index babe93db5117d822a25f4d7df9df23e93228b2f1..cfa94b5e3806398fb7e6ba01a49657e75c1ab14e 100644
(file)
--- 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);
}