diff options
-rw-r--r-- | stream.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -208,12 +208,13 @@ static int until(struct buffer * b, const char * pattern, int pattern_length) /// Continuation function and core implementation of the reading operation from a stream. /// \param L Lua state running reading operation -/// \param status TODO +/// \param status Unused /// \param ctx Address of the Stream that is being read /// \param Number of the results pushed to the stack int stream_readk(lua_State * L, int status, lua_KContext ctx) { struct stream * s = lua_touserdata(L, 1); + (void) status; for (; ctx <= lua_gettop(L); ++ctx) { |