fix(palette): indentation

This commit is contained in:
Tom 2020-06-09 14:50:16 +02:00 committed by GitHub
parent bb3a4a1ca0
commit 9b82aecec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
vips.h
View File

@ -310,13 +310,13 @@ vips_jpegsave_bridge(VipsImage *in, void **buf, size_t *len, int strip, int qual
int
vips_pngsave_bridge(VipsImage *in, void **buf, size_t *len, int strip, int compression, int quality, int interlace, int palette) {
#if (VIPS_MAJOR_VERSION >= 8 && VIPS_MINOR_VERSION >= 7)
#if (VIPS_MAJOR_VERSION >= 8 && VIPS_MINOR_VERSION >= 7)
return vips_pngsave_buffer(in, buf, len,
"strip", INT_TO_GBOOLEAN(strip),
"compression", compression,
"interlace", INT_TO_GBOOLEAN(interlace),
"filter", VIPS_FOREIGN_PNG_FILTER_ALL,
"palette", INT_TO_GBOOLEAN(palette),
"palette", INT_TO_GBOOLEAN(palette),
NULL
);
#else