[PATCH 3/3] glu32: Don't cast return value from HeapAlloc

André Hentschel nerv at dawncrow.de
Tue Jan 2 05:54:26 CST 2018


Signed-off-by: André Hentschel <nerv at dawncrow.de>
---
 dlls/glu32/mipmap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/glu32/mipmap.c b/dlls/glu32/mipmap.c
index 87d4770..2eff558 100644
--- a/dlls/glu32/mipmap.c
+++ b/dlls/glu32/mipmap.c
@@ -4169,7 +4169,7 @@ static int gluBuild2DMipmapLevelsCore(GLenum target, GLint internalFormat,
 	  case GL_UNSIGNED_INT_8_8_8_8_REV:
 	  case GL_UNSIGNED_INT_10_10_10_2:
 	  case GL_UNSIGNED_INT_2_10_10_10_REV:
-	    dstImage = (GLuint *)HeapAlloc(GetProcessHeap(), 0, memreq);
+	    dstImage = HeapAlloc(GetProcessHeap(), 0, memreq);
 	    break;
 	  default:
 	    return GLU_INVALID_ENUM;
-- 
2.7.4




More information about the wine-devel mailing list