From 12d1f260f3dca44d0d7b89d2c5d1b6f9c310bbf1 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Wed, 4 May 2016 13:05:19 +0300 Subject: Fix a warning when compiling as C++11 --- src/lfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { 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"); lua_settable (L, -3); lua_pushliteral (L, "_VERSION"); - lua_pushliteral (L, "LuaFileSystem "LFS_VERSION); + lua_pushliteral (L, "LuaFileSystem " LFS_VERSION); lua_settable (L, -3); } -- cgit v1.2.3-55-g6feb