summaryrefslogtreecommitdiffstats
path: root/client/mjpeg_decoder.h
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-12-06 17:55:16 +0200
committerAlon Levy <alevy@redhat.com>2010-12-08 17:11:45 +0200
commit06749bd66bb3e689bc96be1a3739747912ee0020 (patch)
treedf26e6897c54367f176d3bdeff757896c090a9d5 /client/mjpeg_decoder.h
parent2cd07dd8f3dd9bf34b1725bb015aecefc93b3454 (diff)
downloadspice-06749bd66bb3e689bc96be1a3739747912ee0020.tar.gz
spice-06749bd66bb3e689bc96be1a3739747912ee0020.tar.xz
spice-06749bd66bb3e689bc96be1a3739747912ee0020.zip
mingw32 build: fix signed/unsigned warnings as errors
Diffstat (limited to 'client/mjpeg_decoder.h')
-rw-r--r--client/mjpeg_decoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/mjpeg_decoder.h b/client/mjpeg_decoder.h
index ccafd379..8455e0d1 100644
--- a/client/mjpeg_decoder.h
+++ b/client/mjpeg_decoder.h
@@ -59,13 +59,13 @@ private:
size_t _data_end;
size_t _extra_skip;
- int _width;
- int _height;
+ unsigned _width;
+ unsigned _height;
int _stride;
uint8_t *_frame;
bool _back_compat;
- int _y;
+ unsigned _y;
uint8_t *_scanline;
int _state;