svn commit: r330757 - head/stand/common

Kyle Evans kevans at FreeBSD.org
Sun Mar 11 04:10:19 UTC 2018


Author: kevans
Date: Sun Mar 11 04:10:18 2018
New Revision: 330757
URL: https://svnweb.freebsd.org/changeset/base/330757

Log:
  stand/interp_lua: correct errorr => error

Modified:
  head/stand/common/interp_lua.c

Modified: head/stand/common/interp_lua.c
==============================================================================
--- head/stand/common/interp_lua.c	Sun Mar 11 04:01:23 2018	(r330756)
+++ head/stand/common/interp_lua.c	Sun Mar 11 04:10:18 2018	(r330757)
@@ -123,7 +123,7 @@ interp_init(void)
 	if (interp_include(filename) != 0) {
                 const char *errstr = lua_tostring(luap, -1);
                 errstr = errstr == NULL ? "unknown" : errstr;
-                printf("Startup errorr in %s:\nLUA ERROR: %s.\n", filename, errstr);
+                printf("Startup error in %s:\nLUA ERROR: %s.\n", filename, errstr);
                 lua_pop(luap, 1);
 	}
 }


More information about the svn-src-all mailing list