Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/os_stat.c')
-rwxr-xr-xsrc/host/os_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/os_stat.c b/src/host/os_stat.c
index b3554dc..21d6585 100755
--- a/src/host/os_stat.c
+++ b/src/host/os_stat.c
@@ -13,7 +13,7 @@ int os_stat(lua_State* L)
struct stat s;
const char* filename = luaL_checkstring(L, 1);
- if (stat(filename, &s) != 0)
+ if (stat(filename, &s) != 0)
{
lua_pushnil(L);
switch (errno)