diff options
author | marha <marha@users.sourceforge.net> | 2011-04-01 15:33:19 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-04-01 15:33:19 +0000 |
commit | 1d142834bdb30308784a0654a39b7c0de7e37695 (patch) | |
tree | c54c66c284767175e9b1dfeac3eed391b8d2ddc5 /mesalib/src/mesa/main | |
parent | 0fd309bfed8f9f61a8ea8bbbe7628d0af471c070 (diff) | |
download | vcxsrv-1d142834bdb30308784a0654a39b7c0de7e37695.tar.gz vcxsrv-1d142834bdb30308784a0654a39b7c0de7e37695.tar.bz2 vcxsrv-1d142834bdb30308784a0654a39b7c0de7e37695.zip |
Solved crash due to latest merge
Diffstat (limited to 'mesalib/src/mesa/main')
-rw-r--r-- | mesalib/src/mesa/main/api_arrayelt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/api_arrayelt.c b/mesalib/src/mesa/main/api_arrayelt.c index ed0361742..2eb41996d 100644 --- a/mesalib/src/mesa/main/api_arrayelt.c +++ b/mesalib/src/mesa/main/api_arrayelt.c @@ -51,7 +51,7 @@ typedef struct { int offset;
} AEarray;
-typedef void (*attrib_func)( GLuint indx, const void *data );
+typedef void (GLAPIENTRY *attrib_func)( GLuint indx, const void *data );
typedef struct {
const struct gl_client_array *array;
|