-nicer data types

This commit is contained in:
Christian Grothoff 2021-10-20 16:04:10 +02:00
parent c13810ba2c
commit c353cabe07
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -29,9 +29,9 @@
/**
* Set if we should immediately MHD_run() again.
* Set to true if we should immediately MHD_run() again.
*/
static int triggered;
static bool triggered;
/**
* Task running the HTTP server.
@ -63,10 +63,10 @@ run_daemon (void *cls)
{
mhd_task = NULL;
do {
triggered = 0;
triggered = false;
GNUNET_assert (MHD_YES ==
MHD_run (mhd));
} while (0 != triggered);
} while (triggered);
mhd_task = prepare_daemon ();
}
@ -166,7 +166,7 @@ TALER_MHD_daemon_trigger (void)
}
else
{
triggered = 1;
triggered = true;
}
}