fixed sign extension warning
authorSubhransu Mohanty <sub.mohanty@samsung.com>
Thu, 20 Aug 2020 01:28:56 +0000 (10:28 +0900)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 23 Aug 2020 21:20:53 +0000 (06:20 +0900)
src/vector/vdrawhelper.cpp

index 4594ae5..b14146d 100644 (file)
@@ -537,7 +537,7 @@ static inline void process_in_chunk(const VRle::Span *array, size_t size,
     for (size_t i = 0; i < size; i++) {
         const auto &span = array[i];
         size_t      len = span.len;
-        size_t      x = span.x;
+        auto        x = span.x;
         while (len) {
             auto l = std::min(len, buf.size());
             process(buf.data(), x, span.y, l, span.coverage);