diff options
author | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
commit | f02a5f6cc55fc61229a038ac72edb3ce97cb6950 (patch) | |
tree | b3f3b47105dd5939751262bd880dc7821b435679 /progs/samples/quad.c | |
parent | 902d2faadf37a5627ab2cbcd8993825c8749ec82 (diff) |
Pedantic compiler fixes (Sven Panne)
Diffstat (limited to 'progs/samples/quad.c')
-rw-r--r-- | progs/samples/quad.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/progs/samples/quad.c b/progs/samples/quad.c index 8dec28b6bbd..5b721a44529 100644 --- a/progs/samples/quad.c +++ b/progs/samples/quad.c @@ -102,6 +102,8 @@ static void CALLBACK ErrorHandler(GLenum which) fprintf(stderr, "Quad Error: %s\n", gluErrorString(which)); } +typedef void (GLAPIENTRY *callback_t)(); + static void Init(void) { static GLint colorIndexes[3] = {0, 200, 255}; @@ -163,7 +165,7 @@ static void Init(void) } quadObj = gluNewQuadric(); - gluQuadricCallback(quadObj, GLU_ERROR, ErrorHandler); + gluQuadricCallback(quadObj, GLU_ERROR, (callback_t) ErrorHandler); radius1 = 10; radius2 = 5; |