aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
commit5ca2709ba055901ba9d658aa2ca51e0682dfdb30 (patch)
tree89a4b5b3252e0c50eed39132493f6a5a362660ac /lbuiltin.c
parentbb1cb7b9f112be1fb8453cc7ef4cbaf544850618 (diff)
downloadlua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.gz
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.bz2
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.zip
small warnings
Diffstat (limited to 'lbuiltin.c')
-rw-r--r--lbuiltin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index 0707ea26..495f43d8 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.c,v 1.34 1998/08/21 17:43:44 roberto Exp roberto $ 2** $Id: lbuiltin.c,v 1.35 1998/11/13 16:39:18 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -549,7 +549,7 @@ static void testC (void)
549 char nome[2]; 549 char nome[2];
550 char *s = luaL_check_string(1); 550 char *s = luaL_check_string(1);
551 nome[1] = 0; 551 nome[1] = 0;
552 while (1) { 552 for (;;) {
553 switch (*s++) { 553 switch (*s++) {
554 case '0': case '1': case '2': case '3': case '4': 554 case '0': case '1': case '2': case '3': case '4':
555 case '5': case '6': case '7': case '8': case '9': 555 case '5': case '6': case '7': case '8': case '9':