1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-06-02 02:01:46 +03:00

Avoid GCC 11 -Warray-parameter warnings [BZ #26686].

Building Glibc with the latest GCC 11 also shows a couple of instances
of the new -Warray-parameter warning in the thread db APIs.

To avoid these, this patch changes the deefinitions of the two functions
to match their definitions.
This commit is contained in:
Martin Sebor 2020-10-08 12:46:03 -06:00
parent 50b1b7a390
commit 3eff7504ca

View File

@ -140,7 +140,7 @@ _td_fetch_value (td_thragent_t *ta,
td_err_e td_err_e
_td_store_value (td_thragent_t *ta, _td_store_value (td_thragent_t *ta,
uint32_t desc[2], int descriptor_name, psaddr_t idx, db_desc_t desc, int descriptor_name, psaddr_t idx,
psaddr_t address, psaddr_t widened_value) psaddr_t address, psaddr_t widened_value)
{ {
ps_err_e err; ps_err_e err;
@ -240,7 +240,7 @@ _td_fetch_value_local (td_thragent_t *ta,
td_err_e td_err_e
_td_store_value_local (td_thragent_t *ta, _td_store_value_local (td_thragent_t *ta,
uint32_t desc[2], int descriptor_name, psaddr_t idx, db_desc_t desc, int descriptor_name, psaddr_t idx,
void *address, psaddr_t widened_value) void *address, psaddr_t widened_value)
{ {
td_err_e terr = _td_locate_field (ta, desc, descriptor_name, idx, &address); td_err_e terr = _td_locate_field (ta, desc, descriptor_name, idx, &address);