From c787dccd9b5c3e55547a2c4bb598c0276de65034 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Aug 1999 17:52:00 -0300 Subject: "const" !!! --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 625b459d..474e583f 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.20 1999/06/24 19:42:02 roberto Exp roberto $ +** $Id: lua.c,v 1.21 1999/07/02 18:22:38 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -52,7 +52,7 @@ static void laction (int i) { } -static int ldo (int (*f)(char *), char *name) { +static int ldo (int (*f)(const char *), const char *name) { int res; handler h = lreset(); res = f(name); /* dostring | dofile */ -- cgit v1.2.3-55-g6feb