util.encodings: Fix small typo introduced in 7f789266b741
authorMatthew Wild <mwild1@gmail.com>
Sat, 04 Jun 2011 19:18:11 +0100
changeset 4302 bbb0bf0a09f5
parent 4301 1484ac561b28
child 4306 a101c59772e7
util.encodings: Fix small typo introduced in 7f789266b741
util-src/encodings.c
--- a/util-src/encodings.c	Sat Jun 04 00:29:55 2011 +0100
+++ b/util-src/encodings.c	Sat Jun 04 19:18:11 2011 +0100
@@ -146,7 +146,7 @@
 	}
 	u_strFromUTF8(unprepped, 1024, &unprepped_len, input, input_len, &err);
 	if (U_FAILURE(err)) {
-		luah_pushnil(L);
+		lua_pushnil(L);
 		return 1;
 	}
 	prepped_len = usprep_prepare(profile, unprepped, unprepped_len, prepped, 1024, 0, NULL, &err);