diff options
author | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-17 09:12:32 -0800 |
---|---|---|
committer | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-17 09:12:32 -0800 |
commit | c728e983b71898a06685773128ab9f7b76f2ada8 (patch) | |
tree | 0d6a11ba77ca20eb1cd5b39830a1f84c877bd077 /tests | |
parent | 7a8a3636592a80a5094f40ebddaf7233517086fe (diff) |
Shutting off a few warnings.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-Handles.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-Handles.cc b/tests/test-Handles.cc index 04c35fc..d64fe9b 100644 --- a/tests/test-Handles.cc +++ b/tests/test-Handles.cc @@ -50,7 +50,7 @@ void MainTask::Do() { i->rseek(0, SEEK_SET); char * buf1 = (char *) malloc(i->getSize()); ssize_t r = i->read(buf1, s + 15); - Printer::log(M_STATUS, "Read %li bytes (instead of %lli)", r, s + 15); + Printer::log(M_STATUS, "Read %zi bytes (instead of %lli)", r, s + 15); TAssert(i->isEOF()) char * buf2 = (char *) malloc(i->getSize()); |