mirror of
https://github.com/ImageMagick/ImageMagick.git
synced 2026-05-31 11:18:42 +02:00
Corrected endianess typo.
This commit is contained in:
@@ -732,7 +732,7 @@ MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
|
||||
if (image->type != type)
|
||||
(void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
|
||||
MagickTypeOptions,(ssize_t) image->type));
|
||||
(void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
|
||||
(void) FormatLocaleFile(file," Endianness: %s\n",CommandOptionToMnemonic(
|
||||
MagickEndianOptions,(ssize_t) image->endian));
|
||||
/*
|
||||
Detail channel depth and extrema.
|
||||
|
||||
@@ -561,7 +561,7 @@ MagickExport unsigned int GetMagickSignature(const StringInfo *nonce)
|
||||
signature=MagickLibInterface;
|
||||
(void) memcpy(p,&signature,sizeof(signature));
|
||||
p+=sizeof(signature);
|
||||
signature=1; /* endianess */
|
||||
signature=1; /* endianness */
|
||||
(void) memcpy(p,&signature,sizeof(signature));
|
||||
p+=sizeof(signature);
|
||||
SetStringInfoLength(version,p-GetStringInfoDatum(version));
|
||||
|
||||
+1
-1
@@ -1033,7 +1033,7 @@ static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
|
||||
if (image->type != type)
|
||||
JSONFormatLocaleFile(file," \"baseType\": %s,\n",
|
||||
CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) image->type));
|
||||
JSONFormatLocaleFile(file," \"endianess\": %s,\n",
|
||||
JSONFormatLocaleFile(file," \"endianness\": %s,\n",
|
||||
CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
|
||||
locate=GetImageArtifact(image,"identify:locate");
|
||||
if (locate == (const char *) NULL)
|
||||
|
||||
Reference in New Issue
Block a user