From: Karl Heuer Date: Mon, 5 Sep 1994 00:13:01 +0000 (+0000) Subject: (srandom): Pass arg to srand48; no return value. X-Git-Tag: emacs-19.34~7152 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=76425a494dc67eabdc32a56c8002250981537b29;p=emacs.git (srandom): Pass arg to srand48; no return value. --- diff --git a/src/sysdep.c b/src/sysdep.c index 004a0b95676..e670958289f 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -2633,7 +2633,7 @@ srandom (arg) int arg; { #ifdef HAVE_LRAND48 - return srand48 (); + srand48 (arg); #else srand (arg); #endif