don't use gcc experimental embedded function feature
This commit is contained in:
parent
e095416bc2
commit
0071ba54de
11
replay.c
11
replay.c
@ -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
|
||||
{
|
||||
size_t i;
|
||||
struct transcript *tr;
|
||||
};
|
||||
|
||||
void
|
||||
|
||||
static void
|
||||
resend (void *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");
|
||||
for (size_t i = 0; i < 4 * tr->n; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user