diff options
author | Pixel <pixel@nobis-crew.org> | 2009-10-21 09:38:34 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-10-21 09:38:34 -0700 |
commit | 615d4b72617c42d4c352724379cb1a4b866b0aea (patch) | |
tree | 283d6d56b8178b53d301a8e9c54de01acfb9a5e3 /lib | |
parent | f0322e2a0ebfca336049ab824f76204874257ba4 (diff) |
Adding a few much needed consts.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BLua.cc | 2 | ||||
-rw-r--r-- | lib/generic.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 76cd443..b08223c 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -671,7 +671,7 @@ void Lua::push(bool b) { lua_pushboolean(L, b); } -void Lua::push(char * s, int size) { +void Lua::push(const char * s, int size) { if (size < 0) { lua_pushstring(L, s); } else { diff --git a/lib/generic.cc b/lib/generic.cc index 689a83c..8c2a66f 100644 --- a/lib/generic.cc +++ b/lib/generic.cc @@ -28,7 +28,7 @@ #endif char verbosity = M_ERROR; -static char * heads[] = {NULL, "EE", "--", "WW", "II"}; +static const char * heads[] = {NULL, "EE", "--", "WW", "II"}; printer_t * printer = 0; locker_t * locker = 0; |