diff options
Diffstat (limited to 'stdlib/lrand48.c')
-rw-r--r-- | stdlib/lrand48.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/lrand48.c b/stdlib/lrand48.c index 0c2593551b..1857ed4291 100644 --- a/stdlib/lrand48.c +++ b/stdlib/lrand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. @@ -27,7 +27,7 @@ lrand48 () { long int result; - (void) __nrand48_r (__libc_drand48_data.X, &__libc_drand48_data, &result); + (void) __nrand48_r (__libc_drand48_data.x, &__libc_drand48_data, &result); return result; } |