diff options
Diffstat (limited to 'indra/llcommon/doublelinkedlist.h')
-rw-r--r-- | indra/llcommon/doublelinkedlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/doublelinkedlist.h b/indra/llcommon/doublelinkedlist.h index 2546d621d0..08c21a94cf 100644 --- a/indra/llcommon/doublelinkedlist.h +++ b/indra/llcommon/doublelinkedlist.h @@ -1343,7 +1343,7 @@ void LLDoubleLinkedList<DATA_TYPE>::scramble() DATA_TYPE *datap = getFirstData(); while(datap) { - random_number = gLindenLabRandomNumber.llrand() % 5; + random_number = ll_rand(5); if (0 == random_number) { |