summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-10-21 09:52:54 -0700
committerPixel <pixel@nobis-crew.org>2009-10-21 09:52:54 -0700
commitce706eee26cb77d799a51df5bce9dd11c2716ef6 (patch)
tree53732ec15fae7a9aafe1b85595abf587efb34d8a
parentbb0a0a39834894207ddafd069371d5f54818ffc6 (diff)
Fixing one more const.
-rw-r--r--src/luac.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luac.cc b/src/luac.cc
index 011013e..504dac2 100644
--- a/src/luac.cc
+++ b/src/luac.cc
@@ -52,7 +52,7 @@ virtual int startup() throw (GeneralException) {
Lua * L = new Lua();
bool strip = true;
bool listing = false;
- char * output = "a.clua";
+ const char * output = "a.clua";
bool todo;
while ((c = getopt_long(argc, argv, "Hhvo:dl", long_options, NULL)) != EOF) {