Skip to content

Commit dcbd0c5

Browse files
committed
Removed unused method.
1 parent 7b8c2eb commit dcbd0c5

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

coders/tiff.c

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -262,18 +262,6 @@ static MagickBooleanType IsTIFF(const unsigned char *magick,const size_t length)
262262
%
263263
*/
264264

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-
277265
static Image *ReadGROUP4Image(const ImageInfo *image_info,
278266
ExceptionInfo *exception)
279267
{

0 commit comments

Comments
 (0)