gdb: fix unknown variable typo in c-exp.y

Fix 'val' -> 'value' typo in c-exp.y which was breaking the build.
Introduced in commit:

  commit e6375bc8eb
  Date:   Wed Apr 17 16:17:33 2024 -0600

      Remove some alloca uses
This commit is contained in:
Andrew Burgess
2024-04-22 10:25:51 +01:00
parent 911cb006bf
commit 39f0ac3831

View File

@@ -3430,7 +3430,7 @@ c_print_token (FILE *file, int type, YYSTYPE value)
case CHAR:
case STRING:
parser_fprintf (file, "tsval<type=%d, %.*s>", value.tsval.type,
value.tsval.length, val.tsval.ptr);
value.tsval.length, value.tsval.ptr);
break;
case NSSTRING: