diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||