This commit is contained in:
Jakub Jelinek 2020-12-06 12:01:09 +01:00
parent 252b28fa8e
commit 841b371c4b
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
+ if (strcmp (var->var_name, name) == 0)
// FIXME: Cache the result ?
- return (const char *) (* (const char **) (((char *) annobin_global_options) + var->var_offset));
+ return * (const char *const *) (((const char *) annobin_global_options) + var->var_offset);
+ return * (const char **) (((char *) annobin_global_options) + var->var_offset);
annobin_inform (INFORM_VERBOSE, "WARN: gcc variable '%s' not found within cl_vars array", name);
#endif
@ -30,7 +30,7 @@
+ if (strcmp (var->var_name, name) == 0)
// FIXME: Cache the result ?
- return (const int) (* (const int **) (((char *) annobin_global_options) + var->var_offset));
+ return * (const int *const *) (((const char *) annobin_global_options) + var->var_offset);
+ return * (int *) (((char *) annobin_global_options) + var->var_offset);
annobin_inform (INFORM_VERBOSE, "WARN: gcc variable '%s' not found within cl_vars array", name);
#endif