summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-05-25 23:15:10 +0000
committerPixel <pixel@nobis-crew.org>2009-05-25 23:15:10 +0000
commit8a58f27f4feede916a43ab684bfba1da3ebc14b0 (patch)
tree443d2a0be607440fa0c0790638bc499c20c967c1
parentf09b51a6a5998bdc97c079daebdfce533085a9d2 (diff)
Typo.
-rw-r--r--lib/LuaHttp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LuaHttp.cc b/lib/LuaHttp.cc
index 80ed0eb..dc0f36b 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);