[Liblas-commits] laszip: use %u, not %d

liblas-commits at liblas.org liblas-commits at liblas.org
Tue Feb 8 18:24:52 EST 2011


details:   http://hg.liblas.orglaszip/rev/d26000f33c96
changeset: 182:d26000f33c96
user:      Michael P. Gerlek <mpg at flaxen.com>
date:      Tue Feb 08 15:24:47 2011 -0800
description:
use %u, not %d

diffstat:

 tools/laszippertest.cpp |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r cf8e2b3d53ec -r d26000f33c96 tools/laszippertest.cpp
--- a/tools/laszippertest.cpp	Fri Feb 04 22:19:23 2011 -0600
+++ b/tools/laszippertest.cpp	Tue Feb 08 15:24:47 2011 -0800
@@ -375,7 +375,7 @@
     end_time = taketime();
   }
 
-  log("laszipper wrote %d bytes in %g seconds\n", num_bytes, end_time-start_time);
+  log("laszipper wrote %u bytes in %g seconds\n", num_bytes, end_time-start_time);
 
   return;
 }
@@ -446,7 +446,7 @@
   }
   else
   {
-    log("SUCCESS: lasunzipper read %d bytes in %g seconds\n", num_bytes, end_time-start_time);
+    log("SUCCESS: lasunzipper read %u bytes in %g seconds\n", num_bytes, end_time-start_time);
   }
 
   return;


More information about the Liblas-commits mailing list