summaryrefslogtreecommitdiff
path: root/tests/glean/tapi2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/glean/tapi2.cpp')
-rw-r--r--tests/glean/tapi2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/glean/tapi2.cpp b/tests/glean/tapi2.cpp
index 8367d74d1..15fe59d44 100644
--- a/tests/glean/tapi2.cpp
+++ b/tests/glean/tapi2.cpp
@@ -104,7 +104,7 @@ static PFNGLDRAWBUFFERSPROC glDrawBuffers_func = NULL;
// \param errorFunc returns name of API function in case of error
// \return true for success, false for error
bool
-API2Test::getFunctions_2_0(char **errorFunc)
+API2Test::getFunctions_2_0(const char **errorFunc)
{
#define GET(PTR, TYPE, STR) \
PTR = (TYPE) GLUtils::getProcAddress(STR); \
@@ -187,7 +187,7 @@ API2Test::setup(void)
return false;
}
- char *errorFunc;
+ const char *errorFunc;
if (!getFunctions_2_0(&errorFunc)) {
env->log << "Unable to get pointer to OpenGL 2.0 function '"
<< errorFunc