aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/jpeg_extractor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/jpeg_extractor.c')
-rw-r--r--src/plugins/jpeg_extractor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/jpeg_extractor.c b/src/plugins/jpeg_extractor.c
index cb5442f..a0722d4 100644
--- a/src/plugins/jpeg_extractor.c
+++ b/src/plugins/jpeg_extractor.c
@@ -81,7 +81,7 @@ next_marker (const unsigned char **data, const unsigned char *end)
81 { 81 {
82 c = NEXTC (data, end); 82 c = NEXTC (data, end);
83 } 83 }
84 while ((c == 0xFF) && (c != -1)); 84 while (c == 0xFF);
85 return c; 85 return c;
86} 86}
87 87