]> git.eshelyaron.com Git - emacs.git/commitdiff
(srandom): Pass arg to srand48; no return value.
authorKarl Heuer <kwzh@gnu.org>
Mon, 5 Sep 1994 00:13:01 +0000 (00:13 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 5 Sep 1994 00:13:01 +0000 (00:13 +0000)
src/sysdep.c

index 004a0b95676cfda9d2e80053b0a530bf593d3f2d..e670958289ff40b602f6e3d003d87ddc20d78f81 100644 (file)
@@ -2633,7 +2633,7 @@ srandom (arg)
      int arg;
 {
 #ifdef HAVE_LRAND48
-  return srand48 ();
+  srand48 (arg);
 #else
   srand (arg);
 #endif