Use size_t for strlen() return value
authorscroggo <scroggo@google.com>
Thu, 10 Dec 2015 21:46:04 +0000 (13:46 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 10 Dec 2015 21:46:04 +0000 (13:46 -0800)
BUG=skia:2810

Review URL: https://codereview.chromium.org/1518843002

src/gpu/gl/egl/SkCreatePlatformGLContext_egl.cpp

index 591cae3..3b2488d 100644 (file)
@@ -277,7 +277,7 @@ GrGLFuncPtr EGLGLContext::onPlatformGetProcAddress(const char* procName) const {
 }
 
 static bool supports_egl_extension(EGLDisplay display, const char* extension) {
-    int extensionLength = strlen(extension);
+    size_t extensionLength = strlen(extension);
     const char* extensionsStr = eglQueryString(display, EGL_EXTENSIONS);
     while (const char* match = strstr(extensionsStr, extension)) {
         // Ensure the string we found is its own extension, not a substring of a larger extension