summaryrefslogtreecommitdiffstats
path: root/tester/covoar/TraceList.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tester/covoar/TraceList.cc')
-rw-r--r--tester/covoar/TraceList.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/tester/covoar/TraceList.cc b/tester/covoar/TraceList.cc
index 514813b..a4e29e6 100644
--- a/tester/covoar/TraceList.cc
+++ b/tester/covoar/TraceList.cc
@@ -7,8 +7,8 @@ namespace Trace {
{
}
- TraceList::~TraceList()
- {
+ TraceList::~TraceList()
+ {
}
void TraceList::add(
@@ -23,15 +23,15 @@ namespace Trace {
t.length = highAddressArg - lowAddressArg;
t.exitReason = why;
- set.push_back( t );
+ set.push_back( t );
}
void TraceList::ShowTrace( traceRange_t *t)
{
printf(
- "Start 0x%x, length 0x%03x Reason %d\n",
- t->lowAddress,
- t->length,
+ "Start 0x%x, length 0x%03x Reason %d\n",
+ t->lowAddress,
+ t->length,
t->exitReason
);
}