Re: [jfx24u] RFR: 8354318: freetype.c: compilation error: 'incompatible pointer type' with gcc 14

2025-04-23 Thread Kevin Rushforth
On Mon, 14 Apr 2025 17:40:02 GMT, Kevin Rushforth wrote: > Clean backport of "incompatible pointer type" fix to jfx24u @johanvos Can you add maintainer approval for this bug? - PR Comment: https://git.openjdk.org/jfx24u/pull/21#issuecomment-2824046179

[jfx24u] RFR: 8354318: freetype.c: compilation error: 'incompatible pointer type' with gcc 14

2025-04-14 Thread Kevin Rushforth
Clean backport of "incompatible pointer type" fix to jfx24u - Commit messages: - Backport 5a897ab7017107471528ab527dac505d2e33aca9 Changes: https://git.openjdk.org/jfx24u/pull/21/files Webrev: https://webrevs.openjdk.org/?repo=jfx24u&pr=21&range=00 Issue: https://bugs.openjdk.or

Re: RFR: 8354318: freetype.c: compilation error: 'incompatible pointer type' with gcc 14

2025-04-10 Thread Lukasz Kostyra
On Thu, 10 Apr 2025 22:41:02 GMT, Kevin Rushforth wrote: > This PR fixes a bug where a local variable was declared to be the wrong type, > causing an error at compilation time when compiling with gcc 14. gcc 14 > rejects assignments of incompatible pointer types without an explicit cast. > In

Re: RFR: 8354318: freetype.c: compilation error: 'incompatible pointer type' with gcc 14

2025-04-10 Thread Kevin Rushforth
On Thu, 10 Apr 2025 22:41:02 GMT, Kevin Rushforth wrote: > This PR fixes a bug where a local variable was declared to be the wrong type, > causing an error at compilation time when compiling with gcc 14. gcc 14 > rejects assignments of incompatible pointer types without an explicit cast. > In

RFR: 8354318: freetype.c: compilation error: 'incompatible pointer type' with gcc 14

2025-04-10 Thread Kevin Rushforth
This PR fixes a bug where a local variable was declared to be the wrong type, causing an error at compilation time when compiling with gcc 14. gcc 14 rejects assignments of incompatible pointer types without an explicit cast. In this case, the solution is declare the variable to be of the correc