sim: Use correct unit for abort message

This patch fixes the unit in the abort printout.
This commit is contained in:
Andreas Hansson 2014-04-23 05:18:27 -04:00
parent bf25c53a7d
commit 6cd82c1116

View file

@ -93,7 +93,7 @@ exitNowHandler(int sigtype)
void void
abortHandler(int sigtype) abortHandler(int sigtype)
{ {
ccprintf(cerr, "Program aborted at cycle %d\n", curTick()); ccprintf(cerr, "Program aborted at tick %d\n", curTick());
} }
// Handle SIGIO // Handle SIGIO