During an exp-run for llvm 15 (see bug 265425), it turned out that graphics/gimp-app failed to build with clang 15: file-dicom.c:605:26: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'gint32' (aka 'int') [-Wint-conversion] return NULL; ^~~~ This is because the return statement is a function that should return an integer, not a pointer. Replace it with the error value -1, as used elsewhere in the function.
Created attachment 239312 [details] graphics/gimp-app: fix build with clang 15
(In reply to Dimitry Andric from comment #1) Push it! Dima, foster father of GIMP :)
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=1b057efd888664e99dbe2a2ae548f2d2278483b4 commit 1b057efd888664e99dbe2a2ae548f2d2278483b4 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2023-01-06 19:57:09 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2023-01-07 14:11:02 +0000 graphics/gimp-app: fix build with clang 15 During an exp-run for llvm 15 (see bug 265425), it turned out that graphics/gimp-app failed to build with clang 15: file-dicom.c:605:26: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'gint32' (aka 'int') [-Wint-conversion] return NULL; ^~~~ This is because the return statement is a function that should return an integer, not a pointer. Replace it with the error value -1, as used elsewhere in the function. PR: 268790 Approved by: fluffy (maintainer) MFH: 2023Q1 .../gimp-app/files/patch-plug-ins_common_file-dicom.c (new) | 11 +++++++++++ 1 file changed, 11 insertions(+)