diff options
Diffstat (limited to 'test/test-automation/src/libSDLtest/fuzzer/fuzzer.c')
-rw-r--r-- | test/test-automation/src/libSDLtest/fuzzer/fuzzer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test-automation/src/libSDLtest/fuzzer/fuzzer.c b/test/test-automation/src/libSDLtest/fuzzer/fuzzer.c index eb184b83..e3a2f560 100644 --- a/test/test-automation/src/libSDLtest/fuzzer/fuzzer.c +++ b/test/test-automation/src/libSDLtest/fuzzer/fuzzer.c @@ -147,8 +147,8 @@ RandomUint64() Uint64 value; Uint32 *vp = (Uint32*)&value; - vp[0] = RandomSint32(); - vp[1] = RandomSint32(); + vp[0] = RandomInteger(); + vp[1] = RandomInteger(); return value; } @@ -159,8 +159,8 @@ RandomSint64() Uint64 value; Uint32 *vp = (Uint32*)&value; - vp[0] = RandomSint32(); - vp[1] = RandomSint32(); + vp[0] = RandomInteger(); + vp[1] = RandomInteger(); return value; } |