Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Unified Diff: content/common/gpu/media/exynos_v4l2_video_device.cc

Issue 288903002: fix sign-compare warning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix sign-compare warning. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/media/exynos_v4l2_video_device.cc
diff --git a/content/common/gpu/media/exynos_v4l2_video_device.cc b/content/common/gpu/media/exynos_v4l2_video_device.cc
index 2410da053295c6853b2551b10b3325bb71f17fed..214a4311ab39466d8a7b37b9940fa119a8dabadb 100644
--- a/content/common/gpu/media/exynos_v4l2_video_device.cc
+++ b/content/common/gpu/media/exynos_v4l2_video_device.cc
@@ -159,7 +159,7 @@ EGLImageKHR ExynosV4L2Device::CreateEGLImage(EGLDisplay egl_display,
}
dmabuf_fds[i].reset(expbuf.fd);
}
- DCHECK_EQ(planes_count, 2);
+ DCHECK_EQ(planes_count, 2u);
EGLint attrs[] = {
EGL_WIDTH, 0, EGL_HEIGHT, 0,
EGL_LINUX_DRM_FOURCC_EXT, 0, EGL_DMA_BUF_PLANE0_FD_EXT, 0,
« no previous file with comments | « no previous file | content/common/gpu/media/v4l2_image_processor.cc » ('j') | content/common/gpu/media/v4l2_image_processor.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698