svn commit: r344283 - stable/11/stand/common

Kyle Evans kevans at FreeBSD.org
Tue Feb 19 18:28:33 UTC 2019


Author: kevans
Date: Tue Feb 19 18:28:32 2019
New Revision: 344283
URL: https://svnweb.freebsd.org/changeset/base/344283

Log:
  MFC r330757: stand/interp_lua: correct errorr => error

Modified:
  stable/11/stand/common/interp_lua.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/stand/common/interp_lua.c
==============================================================================
--- stable/11/stand/common/interp_lua.c	Tue Feb 19 18:22:57 2019	(r344282)
+++ stable/11/stand/common/interp_lua.c	Tue Feb 19 18:28:32 2019	(r344283)
@@ -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-stable mailing list