Skip to content

Commit

Permalink
Fix address range in random-test-client
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Raimbault <[email protected]>
  • Loading branch information
stephane committed May 9, 2016
1 parent 6710861 commit a5bfc75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/random-test-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ int main(void)

nb_loop = nb_fail = 0;
while (nb_loop++ < LOOP) {
for (addr = ADDRESS_START; addr <= ADDRESS_END; addr++) {
for (addr = ADDRESS_START; addr < ADDRESS_END; addr++) {
int i;

/* Random numbers (short) */
Expand Down

0 comments on commit a5bfc75

Please sign in to comment.