From b21e375840c3f4afcba8d4d56e4586849928c2aa Mon Sep 17 00:00:00 2001 From: Mikhael-Danilov Date: Wed, 20 Feb 2013 22:19:05 +0400 Subject: Update src/lfs.c Fix Windows build: make_link now returns int as it should --- src/lfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lfs.c b/src/lfs.c index b270ee8..cfed850 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -408,7 +408,7 @@ static int make_link(lua_State *L) return pushresult(L, (lua_toboolean(L,3) ? symlink : link)(oldpath, newpath), NULL); #else - pusherror(L, "make_link is not supported on Windows"); + return pusherror(L, "make_link is not supported on Windows"); #endif } -- cgit v1.2.3-55-g6feb