[Bug 268790] graphics/gimp-app: fix build with clang 15
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 268790] graphics/gimp-app: fix build with clang 15"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 Jan 2023 14:13:16 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268790
--- Comment #3 from commit-hook@FreeBSD.org ---
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(+)
--
You are receiving this mail because:
You are the assignee for the bug.