diff options
Diffstat (limited to 'libguile/random.c')
-rw-r--r-- | libguile/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/random.c b/libguile/random.c index 16e834143..2c424c5d1 100644 --- a/libguile/random.c +++ b/libguile/random.c @@ -196,7 +196,7 @@ scm_rstate * scm_c_default_rstate () { SCM state = SCM_CDR (scm_var_random_state); - SCM_ASSERT (SCM_NIMP (state) && SCM_RSTATEP (state), + SCM_ASSERT (SCM_RSTATEP (state), state, "*random-state* contains bogus random state", 0); return SCM_RSTATE (state); } |