aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-cut.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/blind-cut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blind-cut.c b/src/blind-cut.c
index e2a7fa6..6112120 100644
--- a/src/blind-cut.c
+++ b/src/blind-cut.c
@@ -43,7 +43,7 @@ main(int argc, char *argv[])
efflush(stdout, "<stdout>");
echeck_frame_size(stream.width, stream.height, stream.pixel_size, 0, stream.file);
frame_size = stream.width * stream.height * stream.pixel_size;
- if (stream.frames > SSIZE_MAX / frame_size)
+ if (stream.frames > (size_t)SSIZE_MAX / frame_size)
eprintf("%s: video is too large\n", stream.file);
if (start >= end)