diff options
author | aw148015 <none@none> | 2008-03-26 09:23:15 -0700 |
---|---|---|
committer | aw148015 <none@none> | 2008-03-26 09:23:15 -0700 |
commit | 830804d907ff6585b5270744bf189392f6cc250e (patch) | |
tree | 96f27490d8bc9253cf1119c01142bb6d5df03f2f /usr/src/cmd/filebench/common/fb_random.c | |
parent | ae320ee60afe6bc5f805712b3d2ab8dcf4bb7bb1 (diff) | |
download | illumos-gate-830804d907ff6585b5270744bf189392f6cc250e.tar.gz |
6676967 incorrectly using %lld in several places
Diffstat (limited to 'usr/src/cmd/filebench/common/fb_random.c')
-rw-r--r-- | usr/src/cmd/filebench/common/fb_random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/cmd/filebench/common/fb_random.c b/usr/src/cmd/filebench/common/fb_random.c index a086185772..15a66880f8 100644 --- a/usr/src/cmd/filebench/common/fb_random.c +++ b/usr/src/cmd/filebench/common/fb_random.c @@ -312,9 +312,9 @@ randdist_init_one(randdist_t *rndp) rndp->rnd_vint_round = avd_get_int(rndp->rnd_round); filebench_log(LOG_DEBUG_IMPL, - "init random var %s: Mean = %6.0llf, Gamma = %6.3llf, Min = %lld", + "init random var %s: Mean = %6.0llf, Gamma = %6.3llf, Min = %llu", rndp->rnd_var->var_name, rndp->rnd_dbl_mean, rndp->rnd_dbl_gamma, - rndp->rnd_vint_min); + (u_longlong_t)rndp->rnd_vint_min); /* initialize distribution to apply */ switch (rndp->rnd_type & RAND_TYPE_MASK) { |