-
Notifications
You must be signed in to change notification settings - Fork 461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unsigned int16 on Solaris 11.2/sparc #796
Milestone
Comments
This is already fixed in release 2.1.1 & master |
stweil
added a commit
to stweil/openjpeg
that referenced
this issue
Jul 14, 2016
The type casts which used this data type can be removed by changing the signature of function swap16. As this function is called with unsigned variables, this change is reasonable. Signed-off-by: Stefan Weil <[email protected]>
It was only fixed for jp2, but is still open for jpwl. I sent a PR which fixes it there, too. |
mayeut
pushed a commit
that referenced
this issue
Jul 14, 2016
The type casts which used this data type can be removed by changing the signature of function swap16. As this function is called with unsigned variables, this change is reasonable. Signed-off-by: Stefan Weil <[email protected]>
malaterre
pushed a commit
that referenced
this issue
Sep 13, 2016
The type casts which used this data type can be removed by changing the signature of function swap16. As this function is called with unsigned variables, this change is reasonable. Signed-off-by: Stefan Weil <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiling openjpeg on Solaris 11.2/sparc using GCC 4.7.5 fails on "u_int16_t" in src/bin/jp2/convert.c. Changing this to "uint16_t" seems to fix the problem.
The text was updated successfully, but these errors were encountered: