Reference to MAX_RAND should be RAND_MAX

This commit is contained in:
Gregory Nutt 2015-04-16 09:34:13 -06:00
parent 0bf5e9378d
commit d2d5d42a7e

View File

@ -274,7 +274,7 @@ int clistbox_main(int argc, char *argv[])
printf("clistbox_main: Selecting five options\n");
for (int i = 0; i < 5; i++)
{
selected[i] = ((nOptions - 1) * rand()) / MAX_RAND;
selected[i] = ((nOptions - 1) * rand()) / RAND_MAX;
printf("clistbox_main: Selecting option %d\n", selected[i]);
listbox->removeOption(selected[i]);
test->showListBox(listbox);