diff -r aa0ceb47da1d -r 6d1986411733 project_files/hwc/rtl/system.c --- 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);