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

Unified Diff: third_party/mesa/MesaLib/src/egl/main/eglapi.c

Issue 5921002: Fixed warning on linux x64.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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
« no previous file with comments | « no previous file | third_party/mesa/MesaLib/src/egl/main/egldisplay.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mesa/MesaLib/src/egl/main/eglapi.c
===================================================================
--- third_party/mesa/MesaLib/src/egl/main/eglapi.c (revision 69281)
+++ third_party/mesa/MesaLib/src/egl/main/eglapi.c (working copy)
@@ -273,7 +273,7 @@
eglGetDisplay(EGLNativeDisplayType nativeDisplay)
{
_EGLPlatformType plat = _eglGetNativePlatform();
- _EGLDisplay *dpy = _eglFindDisplay(plat, (void *) nativeDisplay);
+ _EGLDisplay *dpy = _eglFindDisplay(plat, nativeDisplay);
return _eglGetDisplayHandle(dpy);
}
« no previous file with comments | « no previous file | third_party/mesa/MesaLib/src/egl/main/egldisplay.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698