Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Dec 3, 2022
1 parent fbc548b commit 1433170
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions MagickCore/channel.c
Expand Up @@ -125,12 +125,14 @@ static MagickBooleanType ChannelImage(Image *destination_image,
status = MagickTrue;

size_t
height = MagickMin(source_image->rows,destination_image->rows),
width = MagickMin(source_image->columns,destination_image->columns);
height,
width;

ssize_t
y;

height=MagickMin(source_image->rows,destination_image->rows);
width=MagickMin(source_image->columns,destination_image->columns);
source_view=AcquireVirtualCacheView(source_image,exception);
destination_view=AcquireAuthenticCacheView(destination_image,exception);
#if defined(MAGICKCORE_OPENMP_SUPPORT)
Expand Down Expand Up @@ -205,13 +207,13 @@ MagickExport Image *ChannelFxImage(const Image *image,const char *expression,
*p = expression;

const Image
*source_image = (const Image *) NULL;
*source_image;

double
pixel = 0.0;

Image
*destination_image = (Image *) NULL;
*destination_image;

MagickBooleanType
status = MagickTrue;
Expand Down

0 comments on commit 1433170

Please sign in to comment.