From c5069528e1da3d4651f167011404bcf388ba1c71 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 7 Jun 2013 11:51:10 -0300 Subject: details ('Type* id' -> 'Type *id') --- lzio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lzio.h') diff --git a/lzio.h b/lzio.h index e8406615..9890dce6 100644 --- a/lzio.h +++ b/lzio.h @@ -1,5 +1,5 @@ /* -** $Id: lzio.h,v 1.25 2011/07/15 12:35:32 roberto Exp roberto $ +** $Id: lzio.h,v 1.26 2011/07/15 12:48:03 roberto Exp roberto $ ** Buffered streams ** See Copyright Notice in lua.h */ @@ -45,7 +45,7 @@ typedef struct Mbuffer { LUAI_FUNC char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n); LUAI_FUNC void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data); -LUAI_FUNC size_t luaZ_read (ZIO* z, void* b, size_t n); /* read next n bytes */ +LUAI_FUNC size_t luaZ_read (ZIO* z, void *b, size_t n); /* read next n bytes */ @@ -55,7 +55,7 @@ struct Zio { size_t n; /* bytes still unread */ const char *p; /* current position in buffer */ lua_Reader reader; /* reader function */ - void* data; /* additional data */ + void *data; /* additional data */ lua_State *L; /* Lua state (for reader) */ }; -- cgit v1.2.3-55-g6feb