svn commit: r329503 - head/stand/liblua

Kyle Evans kevans at FreeBSD.org
Sun Feb 18 01:31:19 UTC 2018


Author: kevans
Date: Sun Feb 18 01:31:18 2018
New Revision: 329503
URL: https://svnweb.freebsd.org/changeset/base/329503

Log:
  liblua: Fix missing '}' in lutil.c after r329499

Modified:
  head/stand/liblua/lutils.c

Modified: head/stand/liblua/lutils.c
==============================================================================
--- head/stand/liblua/lutils.c	Sun Feb 18 01:21:52 2018	(r329502)
+++ head/stand/liblua/lutils.c	Sun Feb 18 01:31:18 2018	(r329503)
@@ -245,3 +245,4 @@ luaopen_io(lua_State *L)
 {
 	luaL_newlib(L, iolib);
 	return 1;
+}


More information about the svn-src-all mailing list