summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-04-21 09:35:11 -0700
committerEric Anholt <eric@anholt.net>2014-04-22 14:50:55 -0700
commit7f8da66d9ae4ac542970e8e2f5e73e7ab7a7c3c2 (patch)
tree2ca5cfe499ae5da47d7efb56b7f3e7c4d31a4928
parent2fd815135e7769aa9dd0d3b8cb558350ba7eb70d (diff)
Fix const cast warnings in our ops definitions.
We only store string literals here. Signed-off-by: Eric Anholt <eric@anholt.net> Acked-by: Keith Packard <keithp@keithp.com>
-rw-r--r--rendercheck.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rendercheck.h b/rendercheck.h
index 18417a8..fcca571 100644
--- a/rendercheck.h
+++ b/rendercheck.h
@@ -64,7 +64,7 @@ typedef struct _picture_info {
struct op_info {
int op;
- char *name;
+ const char *name;
Bool disabled;
};