diff options
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c index 676e53ccbd8..515cd28328b 100644 --- a/src/fns.c +++ b/src/fns.c @@ -80,7 +80,7 @@ Other values of LIMIT are ignored. */) { EMACS_TIME t; EMACS_GET_TIME (t); - seed_random (getpid () ^ EMACS_SECS (t) ^ EMACS_USECS (t)); + seed_random (getpid () ^ EMACS_SECS (t) ^ EMACS_NSECS (t)); } if (NATNUMP (limit) && XFASTINT (limit) != 0) |