From 37b37420beecdbcde2ef14eeb4f0fcfd8f2587ed Mon Sep 17 00:00:00 2001 From: jhurst Date: Thu, 17 Jun 2010 03:33:17 +0000 Subject: fixed bogus values in dump routine --- src/JP2K.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/JP2K.cpp') diff --git a/src/JP2K.cpp b/src/JP2K.cpp index 6858253..b16a696 100755 --- a/src/JP2K.cpp +++ b/src/JP2K.cpp @@ -121,11 +121,11 @@ ASDCP::JP2K::Accessor::SIZ::Dump(FILE* stream) fprintf(stream, "SIZ: \n"); fprintf(stream, " Rsize: %hu\n", Rsize()); fprintf(stream, " Xsize: %u\n", Xsize()); - fprintf(stream, " Ysize: %u\n", Xsize()); + fprintf(stream, " Ysize: %u\n", Ysize()); fprintf(stream, " XOsize: %u\n", XOsize()); - fprintf(stream, " YOsize: %u\n", XOsize()); + fprintf(stream, " YOsize: %u\n", YOsize()); fprintf(stream, " XTsize: %u\n", XTsize()); - fprintf(stream, " YTsize: %u\n", XTsize()); + fprintf(stream, " YTsize: %u\n", YTsize()); fprintf(stream, "XTOsize: %u\n", XTOsize()); fprintf(stream, "YTOsize: %u\n", YTOsize()); fprintf(stream, " Csize: %u\n", Csize()); -- cgit v1.2.3