Skip to content

Commit

Permalink
Corrected method name.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Dec 12, 2021
1 parent fb428af commit 15aadb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coders/jpeg.c
Original file line number Diff line number Diff line change
Expand Up @@ -2070,7 +2070,7 @@ static void TerminateDestination(j_compress_ptr compress_info)
}
}

static void WriteProfile(j_compress_ptr jpeg_info,Image *image)
static void WriteProfiles(j_compress_ptr jpeg_info,Image *image)
{
const char
*name;
Expand Down Expand Up @@ -2874,7 +2874,7 @@ static MagickBooleanType WriteJPEGImage_(const ImageInfo *image_info,
(unsigned int) MagickMin((size_t) strlen(value+i),65533L));
}
if (image->profiles != (void *) NULL)
WriteProfile(jpeg_info,image);
WriteProfiles(jpeg_info,image);
/*
Convert MIFF to JPEG raster pixels.
*/
Expand Down

0 comments on commit 15aadb7

Please sign in to comment.