diff options
author | Determinant <[email protected]> | 2015-05-26 14:06:52 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-26 14:06:52 +0800 |
commit | 81bf2d653902860c5d28ccade19ac6e1fd56acaf (patch) | |
tree | 831a25c84332ac0839dbe498f61620ea634170e0 /io/param.c | |
parent | 8c5246a8794011ca0c25f15643771f031d258594 (diff) |
add layer and param
Diffstat (limited to 'io/param.c')
-rw-r--r-- | io/param.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -220,12 +220,12 @@ int nerv_param_file_write_chunkdata(lua_State *L) { write_param_metadata(pfh->fp, metadata_str, &status); CHECK_WRITE(status); lua_pushvalue(L, 3); - lua_getfield(L, -1, "save"); + lua_getfield(L, -1, "write"); if (!lua_isfunction(L, -1)) - nerv_error(L, "\"save\" method must be implemented"); + nerv_error(L, "\"write\" method must be implemented"); lua_pushvalue(L, -2); - lua_pushvalue(L, 4); /* pass handle as parameter to save() */ - lua_call(L, 2, 0); /* let the save() to write */ + lua_pushvalue(L, 4); /* pass handle as parameter to write() */ + lua_call(L, 2, 0); /* let the write() to write */ lua_pop(L, 1); size = ftello(pfh->fp) - start; fseeko(pfh->fp, start, SEEK_SET); |