Kaydet (Commit) 037a6a4a authored tarafından Markus Mohrhard's avatar Markus Mohrhard

fix signed/unsigned comparison warning

Change-Id: I0d1ce56514ff9dfff620f11cf987d6d53c4be5e4
üst 55cf020e
...@@ -190,7 +190,7 @@ bool OpenGLSalBitmap::AllocateUserData() ...@@ -190,7 +190,7 @@ bool OpenGLSalBitmap::AllocateUserData()
#ifdef DBG_UTIL #ifdef DBG_UTIL
else else
{ {
for (size_t i = 0; i < mnBytesPerRow * mnHeight; i++) for (size_t i = 0; i < size_t(mnBytesPerRow * mnHeight); i++)
maUserBuffer.get()[i] = (i & 0xFF); maUserBuffer.get()[i] = (i & 0xFF);
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment