changeset 10840 | 6d1986411733 |
parent 10838 | 2abe883c9c21 |
child 10910 | df11dea74701 |
--- a/project_files/hwc/rtl/system.c Sun Mar 01 16:32:14 2015 +0100 +++ b/project_files/hwc/rtl/system.c Sun Mar 01 16:38:18 2015 +0100 @@ -338,7 +338,7 @@ LongInt fpcrtl_random(LongInt l) { // random(0) is undefined in docs but effectively returns 0 in free pascal if (l == 0) { - printf("WARNING: random(0) called!"); + printf("WARNING: random(0) called!\n"); return 0; } return (LongInt) (rand() / (double) RAND_MAX * l);