diff options
author | Brian Paul <[email protected]> | 2014-03-05 07:47:41 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-03-06 07:47:05 -0700 |
commit | 280e0657072459804896e4c05d45d1cf8bfc97c4 (patch) | |
tree | 085b23251631a3f20bad0f6c6769eb18824b0d95 /src/mapi/glapi/glapi.c | |
parent | ef8a19ed4facf9769e1da1cbb9e741df23893ed5 (diff) |
glapi: replace 'user' with 'context' in u_current.[ch] code
To make the functions more understandable.
Reviewed-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/mapi/glapi/glapi.c')
-rw-r--r-- | src/mapi/glapi/glapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/glapi.c b/src/mapi/glapi/glapi.c index 3a0b638f73e..231bdad4634 100644 --- a/src/mapi/glapi/glapi.c +++ b/src/mapi/glapi/glapi.c @@ -54,7 +54,7 @@ _glapi_check_multithread(void) void _glapi_set_context(void *context) { - u_current_set_user((const void *) context); + u_current_set_context((const void *) context); } void |