aboutsummaryrefslogtreecommitdiff
path: root/src/tests/logger.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
committerMike Buland <eichlan@xagasoft.com>2008-09-24 03:22:58 +0000
commit0975d66d2f06603f5e4016440b333aac88e2958a (patch)
treecd3767fb74c2475fd78bca9ff2d3ba825dd329f4 /src/tests/logger.cpp
parent17df4c2b9616c29865b0d893cc797d4938a660a2 (diff)
downloadlibbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.gz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.bz2
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.xz
libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.zip
Ok, now all the warnings are gone (except for those coming from nids, but that's
ok, nids is still in flux, they'll be gone soon).
Diffstat (limited to 'src/tests/logger.cpp')
-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