aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index a7d85762..81dfd475 100644
--- a/lobject.h
+++ b/lobject.h
@@ -427,8 +427,8 @@ typedef struct TString {
427** Get string and length */ 427** Get string and length */
428#define getlstr(ts, len) \ 428#define getlstr(ts, len) \
429 (strisshr(ts) \ 429 (strisshr(ts) \
430 ? (cast_void(len = (ts)->shrlen), rawgetshrstr(ts)) \ 430 ? (cast_void((len) = (ts)->shrlen), rawgetshrstr(ts)) \
431 : (cast_void(len = (ts)->u.lnglen), (ts)->contents)) 431 : (cast_void((len) = (ts)->u.lnglen), (ts)->contents))
432 432
433/* }================================================================== */ 433/* }================================================================== */
434 434