We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8c2eb commit dcbd0c5Copy full SHA for dcbd0c5
coders/tiff.c
@@ -262,18 +262,6 @@ static MagickBooleanType IsTIFF(const unsigned char *magick,const size_t length)
262
%
263
*/
264
265
-static inline size_t WriteLSBLong(FILE *file,const unsigned int value)
266
-{
267
- unsigned char
268
- buffer[4];
269
-
270
- buffer[0]=(unsigned char) value;
271
- buffer[1]=(unsigned char) (value >> 8);
272
- buffer[2]=(unsigned char) (value >> 16);
273
- buffer[3]=(unsigned char) (value >> 24);
274
- return(fwrite(buffer,1,4,file));
275
-}
276
277
static Image *ReadGROUP4Image(const ImageInfo *image_info,
278
ExceptionInfo *exception)
279
{
0 commit comments