aboutsummaryrefslogtreecommitdiff
path: root/src/tests/logger.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tests/logger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/logger.cpp b/src/tests/logger.cpp
index 71a1ca2..04cefe8 100644
--- a/src/tests/logger.cpp
+++ b/src/tests/logger.cpp
@@ -17,7 +17,7 @@ class Thing
17 lineLog( 2, "Want a thing?"); 17 lineLog( 2, "Want a thing?");
18 } 18 }
19 19
20 void go( int i ) 20 void go( int )
21 { 21 {
22 lineLog( 1, "GO!!!!"); 22 lineLog( 1, "GO!!!!");
23 } 23 }
@@ -32,6 +32,6 @@ int main()
32 logHexDump( 5, "This is a test of the hex-dump facility", 16, "Random stuff"); 32 logHexDump( 5, "This is a test of the hex-dump facility", 16, "Random stuff");
33 33
34 Thing gh; 34 Thing gh;
35 gh.go( 6); 35 gh.go( 6 );
36} 36}
37 37