diff options
author | Determinant <[email protected]> | 2015-06-07 21:59:10 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-06-07 21:59:10 +0800 |
commit | 0f30b1a4b5e583cb1df7dbb349c1af4378e41369 (patch) | |
tree | 967c6326b83cda2b92eee5f597dde0e74b071dbb /matrix/generic/matrix.c | |
parent | 6e720b961f7edac9c3a41affe0ca40dd0ec9fc85 (diff) |
fix minor bugs in cumatrix; clean up part of code
Diffstat (limited to 'matrix/generic/matrix.c')
-rw-r--r-- | matrix/generic/matrix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/matrix/generic/matrix.c b/matrix/generic/matrix.c index d6b0aea..e17fb42 100644 --- a/matrix/generic/matrix.c +++ b/matrix/generic/matrix.c @@ -6,6 +6,7 @@ extern const char *nerv_matrix_(tname); extern const char *MATRIX_BASE_TNAME; void nerv_matrix_(data_free)(lua_State *L, Matrix *self) { + (void)L; assert(*self->data_ref > 0); if (--(*self->data_ref) == 0) { |