summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-05-26 20:17:22 -0700
committerPixel <pixel@nobis-crew.org>2009-05-26 20:17:22 -0700
commit93397ce09daf80f88726ec188671544a9b28e5c2 (patch)
tree9614d2b5abfc578b9805201374c3d0bdce649e8e
parenta63103d8cdd68373dcd3a401bab38640afd211eb (diff)
parent8a58f27f4feede916a43ab684bfba1da3ebc14b0 (diff)
Merge branch 'master' of ssh+git://git.grumpycoder.net/pub/repo.git/Baltisot
-rw-r--r--lib/LuaHttp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc
index c245a77..b9ad988 100644
--- a/lib/LuaHttp.cc
+++ b/lib/LuaHttp.cc
@@ -325,7 +325,7 @@ int sLua_HttpResponse::HttpResponse_proceed_statics(Lua * L, int n, int caller)
{
Handle * out = lua_recast<Handle>(L, 2);
if (!out)
- L->error("Need an output handle to Base64DecodeBin")
+ L->error("Need an output handle to Base64DecodeBin");
enc_t = (char *) Base64::decode(L->tostring(), &l);
out->write(enc_t, l);
free(enc_t);