commit a9a4bf68b0917b2fb07c4bf79602fa5b7c59484e
parent f31cc8e3425635cf028fb8a84d080f1ec4fc32cc
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Tue, 13 Jan 2015 11:17:39 -0200
typo in comment
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/loadlib.c b/loadlib.c
@@ -1,5 +1,5 @@
/*
-** $Id: loadlib.c,v 1.123 2014/11/12 13:31:51 roberto Exp roberto $
+** $Id: loadlib.c,v 1.124 2015/01/05 13:51:39 roberto Exp roberto $
** Dynamic library loader for Lua
** See Copyright Notice in lua.h
**
@@ -136,8 +136,8 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
#include <dlfcn.h>
/*
-** Macro to covert pointer to void* to pointer to function. This cast
-** is undefined according to ISO C, but POSIX assumes that it must work.
+** Macro to convert pointer-to-void* to pointer-to-function. This cast
+** is undefined according to ISO C, but POSIX assumes that it works.
** (The '__extension__' in gnu compilers is only to avoid warnings.)
*/
#if defined(__GNUC__)