From dc8d01acd007347a099e8ef4a1333a951ba11820 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Fri, 30 Jan 1998 17:49:12 +0100
Subject: [PATCH] Fixed signed/unsigned bug.

Rev: src/modules/_Image_JPEG/image_jpeg.c:1.8
---
 src/modules/_Image_JPEG/image_jpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/_Image_JPEG/image_jpeg.c b/src/modules/_Image_JPEG/image_jpeg.c
index a79c4c8ab0..cc2d363795 100644
--- a/src/modules/_Image_JPEG/image_jpeg.c
+++ b/src/modules/_Image_JPEG/image_jpeg.c
@@ -185,7 +185,7 @@ static void my_skip_input_data(struct jpeg_decompress_struct *cinfo,
 {
    struct my_source_mgr *sm=(struct my_source_mgr *)cinfo->src;
  
-   if (num_bytes>sm->pub.bytes_in_buffer)
+   if (((unsigned long)num_bytes)>sm->pub.bytes_in_buffer)
       num_bytes=sm->pub.bytes_in_buffer;
 
    sm->pub.next_input_byte += (size_t) num_bytes;
-- 
GitLab