summaryrefslogtreecommitdiffstats
path: root/third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c')
-rw-r--r--third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c b/third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c
index 7421a36..5193445 100644
--- a/third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c
+++ b/third_party/mesa/MesaLib/src/mapi/glapi/glapi_dispatch.c
@@ -65,7 +65,7 @@
fprintf MESSAGE; \
CALL_ ## FUNC(GET_DISPATCH(), ARGS);
-#define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
+#define RETURN_DISPATCH(TYPE, FUNC, ARGS, MESSAGE) \
fprintf MESSAGE; \
return CALL_ ## FUNC(GET_DISPATCH(), ARGS);
@@ -74,7 +74,7 @@
#define DISPATCH(FUNC, ARGS, MESSAGE) \
CALL_ ## FUNC(GET_DISPATCH(), ARGS);
-#define RETURN_DISPATCH(FUNC, ARGS, MESSAGE) \
+#define RETURN_DISPATCH(TYPE, FUNC, ARGS, MESSAGE) \
return CALL_ ## FUNC(GET_DISPATCH(), ARGS);
#endif /* logging */