aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lobject.h b/lobject.h
index 4a0835a8..8c06a224 100644
--- a/lobject.h
+++ b/lobject.h
@@ -750,10 +750,9 @@ typedef union Node {
750 750
751 751
752/* copy a value into a key */ 752/* copy a value into a key */
753#define setnodekey(L,node,obj) \ 753#define setnodekey(node,obj) \
754 { Node *n_=(node); const TValue *io_=(obj); \ 754 { Node *n_=(node); const TValue *io_=(obj); \
755 n_->u.key_val = io_->value_; n_->u.key_tt = io_->tt_; \ 755 n_->u.key_val = io_->value_; n_->u.key_tt = io_->tt_; }
756 checkliveness(L,io_); }
757 756
758 757
759/* copy a value from a key */ 758/* copy a value from a key */