aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index e552ba04..dbfe0506 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.91 2014/05/15 20:28:39 roberto Exp roberto $ 2** $Id: lobject.h,v 2.92 2014/05/15 20:41:27 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -246,7 +246,7 @@ typedef struct lua_TValue TValue;
246#define setobj(L,obj1,obj2) \ 246#define setobj(L,obj1,obj2) \
247 { const TValue *io2=(obj2); TValue *io1=(obj1); \ 247 { const TValue *io2=(obj2); TValue *io1=(obj1); \
248 io1->value_ = io2->value_; io1->tt_ = io2->tt_; \ 248 io1->value_ = io2->value_; io1->tt_ = io2->tt_; \
249 checkliveness(G(L),io1); } 249 (void)L; checkliveness(G(L),io1); }
250 250
251 251
252/* 252/*