rsyslog / librelp

OFFICIAL librelp repository on github
https://www.rsyslog.com/librelp/
GNU General Public License v3.0
30 stars 35 forks source link

relp: fix build against upcoming `gcc-14` (`-Werror=calloc-transposed… #264

Open kraj opened 4 months ago

kraj commented 4 months ago

…-args`)

gcc-14 added a new -Wcalloc-transposed-args warning recently. It detected minor infelicity in calloc() API usage

Fixes ../../git/src/relp.c: In function 'addToEpollSet': ../../git/src/relp.c:101:39: error: 'calloc' sizes specified with 'sizeof' in the earlier argument and not in the later argument [-Werror=calloc-transposed-args] 101 | CHKmalloc(epd = calloc(sizeof(epolld_t), 1)); | ^~~~