From: RĂ©mi Denis-Courmont Date: Wed, 28 Jul 2010 14:31:28 +0000 (+0300) Subject: Really fix PRNG return value descriptions X-Git-Tag: 1.2.0-pre1~5644 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f6f5286adf9ac757790f6b60a6693d3973f03344;p=vlc Really fix PRNG return value descriptions --- 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) {