From f6f5286adf9ac757790f6b60a6693d3973f03344 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 28 Jul 2010 17:31:28 +0300 Subject: [PATCH] Really fix PRNG return value descriptions --- src/misc/rand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc/rand.c b/src/misc/rand.c index 14e2b9e026..82c67c3d7f 100644 --- a/src/misc/rand.c +++ b/src/misc/rand.c @@ -210,7 +210,7 @@ double vlc_drand48 (void) * @warning Series generated by this function are not reproducible. * Use nrand48() if you need reproducible series. * - * @return a double value within [0.0, 2^32-1] inclusive + * @return an integral value within [0.0, 2^32-1] inclusive */ long vlc_lrand48 (void) { @@ -230,7 +230,7 @@ long vlc_lrand48 (void) * @warning Series generated by this function are not reproducible. * Use jrand48() if you need reproducible series. * - * @return a double value within [-2^32, 2^32-1] inclusive + * @return an integral value within [-2^32, 2^32-1] inclusive */ long vlc_mrand48 (void) { -- 2.39.2