From b1f962d7c2cdceb90bd60d4ee89adb80bea8f626 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Sat, 22 Mar 2008 17:50:12 +0000 Subject: [PATCH] Added a couple of missing semi-colons to a Rain testcase --- testcases/commstime.rain | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testcases/commstime.rain b/testcases/commstime.rain index 28b7863..69c85fb 100644 --- a/testcases/commstime.rain +++ b/testcases/commstime.rain @@ -70,8 +70,8 @@ process consume_int(?int: in, !uint8: out) ### uses (time) int: m; m = toMicros(t1 - t0) / 1000000; - out ! "Time per commstime iteration in micro-seconds: " - out ! int_to_str(m) + out ! "Time per commstime iteration in micro-seconds: "; + out ! int_to_str(m); out ! "\n"; } }