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);
        }
 }
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to