aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lfs.c b/src/lfs.c
index 159ca59..9720d8b 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -869,7 +869,7 @@ static void set_info (lua_State *L) {
869 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); 869 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution");
870 lua_settable (L, -3); 870 lua_settable (L, -3);
871 lua_pushliteral (L, "_VERSION"); 871 lua_pushliteral (L, "_VERSION");
872 lua_pushliteral (L, "LuaFileSystem "LFS_VERSION); 872 lua_pushliteral (L, "LuaFileSystem " LFS_VERSION);
873 lua_settable (L, -3); 873 lua_settable (L, -3);
874} 874}
875 875