don't use gcc experimental embedded function feature

This commit is contained in:
Özgür Kesim 2024-01-15 13:21:30 +01:00
parent e095416bc2
commit 0071ba54de
Signed by: oec
GPG Key ID: 3D76A56D79EDD9D7

View File

@ -162,17 +162,14 @@ cb_result (void *arg,
} }
static uint16_t
cb_start (void *auction_closure)
{
struct transcript *tr = (struct transcript *) auction_closure;
struct cls struct cls
{ {
size_t i; size_t i;
struct transcript *tr; struct transcript *tr;
}; };
void
static void
resend (void *x) resend (void *x)
{ {
struct cls c = *(struct cls *) x; struct cls c = *(struct cls *) x;
@ -183,6 +180,10 @@ cb_start (void *auction_closure)
} }
static uint16_t
cb_start (void *auction_closure)
{
struct transcript *tr = (struct transcript *) auction_closure;
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "REPLAY start replay auction\n"); GNUNET_log (GNUNET_ERROR_TYPE_INFO, "REPLAY start replay auction\n");
for (size_t i = 0; i < 4 * tr->n; i++) for (size_t i = 0; i < 4 * tr->n; i++)
{ {