summaryrefslogtreecommitdiff
path: root/expr.h
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2007-09-23 20:15:13 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2007-09-23 20:15:13 +0200
commit829cb75130d1edd88fa1d33e277f49167daedacf (patch)
tree1eac332bfee7048c57a0b15349dc70a6b821a2c1 /expr.h
parente8ffa513a109209849b11a3c608356cc28314a8e (diff)
Fixed a bunch of const correctness bugs.
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.h b/expr.h
index 3946cf0..065716d 100644
--- a/expr.h
+++ b/expr.h
@@ -62,7 +62,7 @@ typedef struct _LookupPriv {
} LookupPriv;
typedef struct _LookupEntry {
- char * name;
+ const char *name;
unsigned result;
} LookupEntry;