From f858a155c2289015701c2c03fd99bc1e3688eefb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 3 Jul 2008 11:21:41 -0300 Subject: [PATCH] identation error (pointed by lint) --- lauxlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lauxlib.c b/lauxlib.c index 3dcdfa89..c716c0db 100644 --- 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);