aboutsummaryrefslogtreecommitdiff
path: root/src/tests/tracer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/tracer.cpp')
-rw-r--r--src/tests/tracer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/tracer.cpp b/src/tests/tracer.cpp
index 52ce0d7..a57edf6 100644
--- a/src/tests/tracer.cpp
+++ b/src/tests/tracer.cpp
@@ -12,13 +12,14 @@ void doThing2( int x, const char *bob )
12 TRACE( x, bob ); 12 TRACE( x, bob );
13} 13}
14 14
15void doThing( int x ) 15void doThing( int8_t x )
16{ 16{
17 TRACE( x ); 17 TRACE( x );
18} 18}
19 19
20int main( int argc, char *argv[] ) 20int main( int argc, char *argv[] )
21{ 21{
22 TRACE( argc, argv );
22 doThing( 54 ); 23 doThing( 54 );
23 doThing2( 128, "Hello" ); 24 doThing2( 128, "Hello" );
24 doThing3( 266, "Goodbye", argv ); 25 doThing3( 266, "Goodbye", argv );