Commit 322c2425 by Steven G. Kargl Committed by Paul Brook

* random.c (random_seed): Use correct variable.

From-SVN: r82167
parent 40e929f3
2004-05-23 Steven G. Kargl <kargls@comcast.net>
* random.c (random_seed): Use correct variable.
2004-05-22 Steven G. Kargl <kargls@comcast.net> 2004-05-22 Steven G. Kargl <kargls@comcast.net>
* intrinsics/system_clock: New file. * intrinsics/system_clock: New file.
......
...@@ -121,7 +121,7 @@ random_seed (GFC_INTEGER_4 * size, const gfc_array_i4 * put, ...@@ -121,7 +121,7 @@ random_seed (GFC_INTEGER_4 * size, const gfc_array_i4 * put,
abort (); abort ();
/* If this is the case the array is a temporary */ /* If this is the case the array is a temporary */
if (get->dim[0].stride == 0) if (put->dim[0].stride == 0)
return; return;
/* This code now should do correct strides. */ /* This code now should do correct strides. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment