aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/format_pack.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2012-01-17 08:43:22 +0100
committermarha <marha@users.sourceforge.net>2012-01-17 08:43:22 +0100
commit34c1e86406451a3604de4982339058088434ab40 (patch)
tree4fb3258fa73a4b41cb7ab4e226ee7f072b151238 /mesalib/src/mesa/main/format_pack.c
parent5cfbe97cd797d8f78ece208bb5114704b83d8aab (diff)
downloadvcxsrv-34c1e86406451a3604de4982339058088434ab40.tar.gz
vcxsrv-34c1e86406451a3604de4982339058088434ab40.tar.bz2
vcxsrv-34c1e86406451a3604de4982339058088434ab40.zip
git update mesa pixman xserver 17 jan 2012
Diffstat (limited to 'mesalib/src/mesa/main/format_pack.c')
-rw-r--r--mesalib/src/mesa/main/format_pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/format_pack.c b/mesalib/src/mesa/main/format_pack.c
index 0982c9af4..85b2c691c 100644
--- a/mesalib/src/mesa/main/format_pack.c
+++ b/mesalib/src/mesa/main/format_pack.c
@@ -636,7 +636,7 @@ pack_float_ARGB1555_REV(const GLfloat src[4], void *dst)
static void
pack_ubyte_AL44(const GLubyte src[4], void *dst)
{
- GLushort *d = ((GLushort *) dst);
+ GLubyte *d = ((GLubyte *) dst);
*d = PACK_COLOR_44(src[ACOMP], src[RCOMP]);
}