diff options
Diffstat (limited to '')
| -rw-r--r-- | src/tests/tracer.cpp | 3 |
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 | ||
| 15 | void doThing( int x ) | 15 | void doThing( int8_t x ) |
| 16 | { | 16 | { |
| 17 | TRACE( x ); | 17 | TRACE( x ); |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | int main( int argc, char *argv[] ) | 20 | int 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 ); |
