aboutsummaryrefslogtreecommitdiff
path: root/loslib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-25 09:50:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-10-25 09:50:46 -0200
commitbdf566a8a32450c2eb6273c8c1a92e2181b6846e (patch)
treeb301da541fbad81034216a6e0465cc381082431e /loslib.c
parentc3c78030f79fdbbb06265d50645e408d60e7798e (diff)
downloadlua-bdf566a8a32450c2eb6273c8c1a92e2181b6846e.tar.gz
lua-bdf566a8a32450c2eb6273c8c1a92e2181b6846e.tar.bz2
lua-bdf566a8a32450c2eb6273c8c1a92e2181b6846e.zip
`name' in comments changed to 'name'
Diffstat (limited to 'loslib.c')
-rw-r--r--loslib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loslib.c b/loslib.c
index 45e5f4e3..12d7c0d3 100644
--- a/loslib.c
+++ b/loslib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loslib.c,v 1.48 2014/10/08 19:57:31 roberto Exp roberto $ 2** $Id: loslib.c,v 1.49 2014/10/17 16:28:21 roberto Exp roberto $
3** Standard Operating System library 3** Standard Operating System library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -227,7 +227,7 @@ static int os_date (lua_State *L) {
227 struct tm tmr, *stm; 227 struct tm tmr, *stm;
228 if (*s == '!') { /* UTC? */ 228 if (*s == '!') { /* UTC? */
229 stm = l_gmtime(&t, &tmr); 229 stm = l_gmtime(&t, &tmr);
230 s++; /* skip `!' */ 230 s++; /* skip '!' */
231 } 231 }
232 else 232 else
233 stm = l_localtime(&t, &tmr); 233 stm = l_localtime(&t, &tmr);