summary refs log tree commit diff
path: root/stdlib/mrand48.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/mrand48.c')
-rw-r--r--stdlib/mrand48.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/mrand48.c b/stdlib/mrand48.c
index 9b0507c1af..aebb9b0117 100644
--- a/stdlib/mrand48.c
+++ b/stdlib/mrand48.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 @@ mrand48 ()
 {
   long int result;
 
-  (void) __jrand48_r (__libc_drand48_data.X, &__libc_drand48_data, &result);
+  (void) __jrand48_r (__libc_drand48_data.x, &__libc_drand48_data, &result);
 
   return result;
 }