# HG changeset patch
# User sheepluva
# Date 1425224298 -3600
# Node ID 6d19864117331d5f5f933fa8aa6cf1a62730512c
# Parent  aa0ceb47da1dfa325678a97414d4e1886ede78da
add newline after warning

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);