diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-22 10:19:34 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-22 10:19:34 +0000 |
| commit | 5f0a8221d844fffc820519f8d0d4114ecfc0521e (patch) | |
| tree | 05c6137b9fe2fa264ca42f42b89264165dfe6f08 /src/lib/video_decoder.cc | |
| parent | a3d25b1d8eff4748717177de4f92414f395fc510 (diff) | |
Fix warning.
Diffstat (limited to 'src/lib/video_decoder.cc')
| -rw-r--r-- | src/lib/video_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_decoder.cc b/src/lib/video_decoder.cc index 383af102d..1cde53e81 100644 --- a/src/lib/video_decoder.cc +++ b/src/lib/video_decoder.cc @@ -343,7 +343,7 @@ VideoDecoder::give (shared_ptr<const ImageProxy> image, Frame frame) return; } - int const max_decoded_size = 96; + unsigned int const max_decoded_size = 96; /* If _decoded is already `full' there is no point in adding anything more to it, as the new stuff will just be removed again. |
