From: Brian Paul Date: Wed, 24 Aug 2011 13:55:04 +0000 (-0600) Subject: x11: add missing comma to fix compilation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c3ad95ed40fca72dbc6c157de2948cb6d074aaac;p=mesa.git x11: add missing comma to fix compilation --- diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index 3a5d0ae04fc..81d000b3952 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -588,7 +588,7 @@ xmesa_DrawPixels_5R6G5B( struct gl_context *ctx, "glDrawPixels(invalid PBO access)"); return; } - buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0 + buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size, GL_MAP_READ_BIT, unpack->BufferObj);