diff options
author | Brian Paul <[email protected]> | 2001-03-20 17:56:10 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-20 17:56:10 +0000 |
commit | 815ad714b44281f367dc8e27d607994d714f749f (patch) | |
tree | 67eff493c6fe741d662d7738d71ea8fc463417a4 /src/glu/mesa/tess.c | |
parent | f3e31787514269c75b21cbee6c6e98fab4c40b01 (diff) |
fixes to make old GLU code compile with new GLU 1.3 header
Diffstat (limited to 'src/glu/mesa/tess.c')
-rw-r--r-- | src/glu/mesa/tess.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glu/mesa/tess.c b/src/glu/mesa/tess.c index 7e05dbb0d08..2725914d33a 100644 --- a/src/glu/mesa/tess.c +++ b/src/glu/mesa/tess.c @@ -1,4 +1,4 @@ -/* $Id: tess.c,v 1.25 2000/07/11 14:11:04 brianp Exp $ */ +/* $Id: tess.c,v 1.26 2001/03/20 17:56:10 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -80,7 +80,7 @@ gluNewTess(void) GLUtriangulatorObj *tobj; if ((tobj = (GLUtriangulatorObj *) - malloc(sizeof(struct GLUtriangulatorObj))) == NULL) + malloc(sizeof(struct GLUtesselator))) == NULL) return NULL; tobj->contours = tobj->last_contour = NULL; init_callbacks(&tobj->callbacks); |