In recent ruby versions, extensions get built with -Wformat. As we use custom
printf specifiers, that does not work for us. As there does not seem to be a
reliable way to override -Wformat, we use a variable for the format string,
which prevents gcc from doing the -Wformat check in that particular situation.
linked_list_t *list;
iface_t *iface;
host_t *addr;
- char buf[64];
+ char buf[64], *fmt = "%H";
if (!rb_block_given_p())
{
enumerator->destroy(enumerator);
while (list->remove_first(list, (void**)&addr) == SUCCESS)
{
- snprintf(buf, sizeof(buf), "%H", addr);
+ snprintf(buf, sizeof(buf), fmt, addr);
addr->destroy(addr);
rb_yield(rb_str_new2(buf));
}