summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/p_context.h
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2007-11-08 13:10:18 +0100
committerMichel Dänzer <michel@tungstengraphics.com>2007-11-08 13:10:18 +0100
commit3871d2882a5e3ae8aafe3206603e095cc90761b5 (patch)
tree84b5a35510a552bcdc31cbea9e90fbaefd9a6e23 /src/mesa/pipe/p_context.h
parent6400658d7154f33b8fe2e7d638ebb317ac6bfff8 (diff)
Rename struct field 'private' to 'priv'.
This broke the LLVM build because 'private' is a C++ keyword.
Diffstat (limited to 'src/mesa/pipe/p_context.h')
-rw-r--r--src/mesa/pipe/p_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_context.h b/src/mesa/pipe/p_context.h
index 3962c0fa6d..48356bd0e6 100644
--- a/src/mesa/pipe/p_context.h
+++ b/src/mesa/pipe/p_context.h
@@ -43,7 +43,7 @@ struct pipe_state_cache;
struct pipe_context {
struct pipe_winsys *winsys;
- void *private; /** context private data (for DRI for example) */
+ void *priv; /** context private data (for DRI for example) */
void (*destroy)( struct pipe_context * );