Variable bytes umbenannt.
Vorbereitung fuer LDMud 3.6.0, bytes ist ein Schluesselwort.
Change-Id: Ib69b80bcd0454e64bd0eb6d36cbaa36ff57b8172
diff --git a/std/util/rand-glfsr.c b/std/util/rand-glfsr.c
index 8bd624c..2a6e5c8 100644
--- a/std/util/rand-glfsr.c
+++ b/std/util/rand-glfsr.c
@@ -132,10 +132,10 @@
}
-public void dumpstream(string file, int bytes)
+public void dumpstream(string file, int bytecount)
{
- int *stream = allocate(bytes);
- foreach(int i: bytes)
+ int *stream = allocate(bytecount);
+ foreach(int i: bytecount)
{
stream[i] = nextbits(8);
}