diff options
author | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-04 13:05:19 +0300 |
---|---|---|
committer | Peter Melnichenko <mpeterval@gmail.com> | 2016-05-04 13:05:19 +0300 |
commit | 12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1 (patch) | |
tree | 0e17a2bec10f14a4c217282dce6ac711dde89f78 | |
parent | e5458bfa749710e499590567e8e3efb743a28888 (diff) | |
download | luafilesystem-12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1.tar.gz luafilesystem-12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1.tar.bz2 luafilesystem-12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1.zip |
Fix a warning when compiling as C++11
-rw-r--r-- | src/lfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ||