aboutsummaryrefslogtreecommitdiff
path: root/lstrlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-06-07 11:51:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-06-07 11:51:10 -0300
commitc5069528e1da3d4651f167011404bcf388ba1c71 (patch)
treede0df5cad9b45a58fed1c60e7c31cc3eb5ded461 /lstrlib.c
parent6fb0b1135090b1e4543438c56ae3e444abb5477d (diff)
downloadlua-c5069528e1da3d4651f167011404bcf388ba1c71.tar.gz
lua-c5069528e1da3d4651f167011404bcf388ba1c71.tar.bz2
lua-c5069528e1da3d4651f167011404bcf388ba1c71.zip
details ('Type* id' -> 'Type *id')
Diffstat (limited to 'lstrlib.c')
-rw-r--r--lstrlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstrlib.c b/lstrlib.c
index d76e4c13..31dadf56 100644
--- a/lstrlib.c
+++ b/lstrlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstrlib.c,v 1.178 2012/08/14 18:12:34 roberto Exp roberto $ 2** $Id: lstrlib.c,v 1.179 2013/04/25 13:52:13 roberto Exp roberto $
3** Standard library for string operations and pattern-matching 3** Standard library for string operations and pattern-matching
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -164,9 +164,9 @@ static int str_char (lua_State *L) {
164} 164}
165 165
166 166
167static int writer (lua_State *L, const void* b, size_t size, void* B) { 167static int writer (lua_State *L, const void *b, size_t size, void *B) {
168 (void)L; 168 (void)L;
169 luaL_addlstring((luaL_Buffer*) B, (const char *)b, size); 169 luaL_addlstring((luaL_Buffer *) B, (const char *)b, size);
170 return 0; 170 return 0;
171} 171}
172 172