| commit | 7f7ecb46c1a863e46c76214d2bc8793b85f796ac | [log] [tgz] |
|---|---|---|
| author | Tom de Vries <tdevries@suse.de> | Mon Aug 14 18:32:29 2023 +0200 |
| committer | Tom de Vries <tdevries@suse.de> | Mon Aug 14 18:32:29 2023 +0200 |
| tree | bd0931be3caf1e4d719a758f157833e96bc86c38 | |
| parent | 980111642db44891500f53c12a939487d95deb68 [diff] |
[gdb/build] Remove superfluous variable param_types in gdb/python/py-param.c
In gdb/python/py-param.c we have:
...
enum param_types
{
...
}
param_types;
...
which declares both an enum param_types, and an unused variable param_types.
Fix this by removing the variable.
Tested on x86_64-linux.
Approved-By: Tom Tromey <tom@tromey.com>