diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-04-06 20:41:06 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-04-06 23:56:47 +0200 |
commit | e57364cd979a9f57f08c023621b999eddd379a45 (patch) | |
tree | 39c6fac745f1b3e0d9bea62b7749322068f7886e /fiv-io-cmm.c | |
parent | 7330f07dd763237b2cf22ee23528cc55541428f0 (diff) | |
download | fiv-e57364cd979a9f57f08c023621b999eddd379a45.tar.gz fiv-e57364cd979a9f57f08c023621b999eddd379a45.tar.xz fiv-e57364cd979a9f57f08c023621b999eddd379a45.zip |
Fix openSUSE 15.5 and Win32 builds
Diffstat (limited to 'fiv-io-cmm.c')
-rw-r--r-- | fiv-io-cmm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fiv-io-cmm.c b/fiv-io-cmm.c index b131acf..8a8b8dc 100644 --- a/fiv-io-cmm.c +++ b/fiv-io-cmm.c @@ -400,7 +400,8 @@ fiv_io_cmm_argb32_premultiply(FivIoCmm *self, #else // ! HAVE_LCMS2 || LCMS_VERSION < 2130 static void -fiv_io_cmm_argb32(FivIoCmm *, FivIoImage *, FivIoProfile *, FivIoProfile *) +fiv_io_cmm_argb32(G_GNUC_UNUSED FivIoCmm *self, G_GNUC_UNUSED FivIoImage *image, + G_GNUC_UNUSED FivIoProfile *source, G_GNUC_UNUSED FivIoProfile *target) { // TODO(p): Unpremultiply, transform, repremultiply. Or require lcms2>=2.13. } |