aboutsummaryrefslogtreecommitdiff
path: root/module/lua/ldebug.c
diff options
context:
space:
mode:
authorMartin Matuska <mm@FreeBSD.org>2021-02-14 00:09:23 +0000
committerMartin Matuska <mm@FreeBSD.org>2021-02-14 00:09:23 +0000
commit69d9cc88d213f3d95526636743f15371f2fa6c2c (patch)
tree8c4a96f8a75926af35912a0d5509e4709d43a486 /module/lua/ldebug.c
parent90705d70c482c1fea055b97773fae14b218344db (diff)
Update OpenZFS to master-c1c31a835vendor/openzfs/20210210
Discussed with: mjguzik
Diffstat (limited to 'module/lua/ldebug.c')
-rw-r--r--module/lua/ldebug.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/module/lua/ldebug.c b/module/lua/ldebug.c
index 2e1efa4e7250..da005c44376e 100644
--- a/module/lua/ldebug.c
+++ b/module/lua/ldebug.c
@@ -324,7 +324,6 @@ static void kname (Proto *p, int pc, int c, const char **name) {
if (ISK(c)) { /* is 'c' a constant? */
TValue *kvalue = &p->k[INDEXK(c)];
if (ttisstring(kvalue)) { /* literal constant? */
- // cppcheck-suppress autoVariables
*name = svalue(kvalue); /* it is its own name */
return;
}