Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed an issue with nonexistant function.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Aug 17, 2011
1 parent 221e392 commit 38153de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test-automation/src/libSDLtest/fuzzer/fuzzer.c
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit 38153de

Please sign in to comment.