diff options
author | Johan Mattsson <[email protected]> | 2022-11-23 22:37:37 +0100 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-11-24 15:48:02 +0900 |
commit | 1bfbd8c4dca678049a45364f689ce0b3aac83ac1 (patch) | |
tree | 8260040f11f95740913dae5c3c07e8187f4f211d /sample/quantize.cpp | |
parent | 0ecef5c2847959192ca677a27faf08255055db42 (diff) | |
download | xbyak-1bfbd8c4dca678049a45364f689ce0b3aac83ac1.tar.gz xbyak-1bfbd8c4dca678049a45364f689ce0b3aac83ac1.zip |
Fix incorrect format strings
Diffstat (limited to 'sample/quantize.cpp')
-rw-r--r-- | sample/quantize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/quantize.cpp b/sample/quantize.cpp index 6bdf0d0..ba0fd22 100644 --- a/sample/quantize.cpp +++ b/sample/quantize.cpp @@ -199,7 +199,7 @@ int main(int argc, char *argv[]) quantize2(dest2, src, qTbl); for (int i = 0; i < N; i++) { if (dest[i] != dest2[i]) { - printf("err[%d] %d %d\n", i, dest[i], dest2[i]); + printf("err[%d] %u %u\n", i, dest[i], dest2[i]); } } |