aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/openzfs/module/lua/ldebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/openzfs/module/lua/ldebug.c')
-rw-r--r--sys/contrib/openzfs/module/lua/ldebug.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/contrib/openzfs/module/lua/ldebug.c b/sys/contrib/openzfs/module/lua/ldebug.c
index 2e1efa4e7250..da005c44376e 100644
--- a/sys/contrib/openzfs/module/lua/ldebug.c
+++ b/sys/contrib/openzfs/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;
}