From 6cd82c111672de6a720b8080d442a5d9f57c172c Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Wed, 23 Apr 2014 05:18:27 -0400 Subject: [PATCH] sim: Use correct unit for abort message This patch fixes the unit in the abort printout. --- src/sim/init.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sim/init.cc b/src/sim/init.cc index 63af2dd88..042448e41 100644 --- a/src/sim/init.cc +++ b/src/sim/init.cc @@ -93,7 +93,7 @@ exitNowHandler(int sigtype) void abortHandler(int sigtype) { - ccprintf(cerr, "Program aborted at cycle %d\n", curTick()); + ccprintf(cerr, "Program aborted at tick %d\n", curTick()); } // Handle SIGIO