add newline after warning
authorsheepluva
Sun, 01 Mar 2015 16:38:18 +0100
changeset 10840 6d1986411733
parent 10839 aa0ceb47da1d
child 10841 6b0a839f399e
add newline after warning
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);