Added a couple of missing semi-colons to a Rain testcase

This commit is contained in:
Neil Brown 2008-03-22 17:50:12 +00:00
parent 710abd7019
commit b1f962d7c2

View File

@ -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";
}
}