commit f858a155c2289015701c2c03fd99bc1e3688eefb
parent 9e7de9473c65baee1f567852a778f2d33a47ea83
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 3 Jul 2008 11:21:18 -0300
identation error (pointed by lint)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lauxlib.c b/lauxlib.c
@@ -1,5 +1,5 @@
/*
-** $Id: lauxlib.c,v 1.177 2008/06/12 14:37:27 roberto Exp roberto $
+** $Id: lauxlib.c,v 1.178 2008/06/13 18:45:35 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -474,7 +474,7 @@ LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
lf.f = freopen(filename, "rb", lf.f); /* reopen in binary mode */
if (lf.f == NULL) return errfile(L, "reopen", fnameindex);
/* skip eventual `#!...' */
- while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ;
+ while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ;
lf.extraline = 0;
}
ungetc(c, lf.f);