mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-13 04:34:35 +03:00
Enable -Wcast-qual compiler warning
This commit is contained in:

committed by
cgzones

parent
ad3acfc847
commit
db472075a4
@ -12,7 +12,10 @@ in the source distribution for its full text.
|
||||
typedef struct FunctionBar_ {
|
||||
int size;
|
||||
char** functions;
|
||||
char** keys;
|
||||
union {
|
||||
char** keys;
|
||||
const char* const* constKeys;
|
||||
} keys;
|
||||
int* events;
|
||||
bool staticData;
|
||||
} FunctionBar;
|
||||
|
Reference in New Issue
Block a user