diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-05-13 17:59:56 +0200 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-05-13 17:59:56 +0200 |
commit | 6707d15ba0232c1ff3485f5ccb3f3c26a77feba7 (patch) | |
tree | cf3b0911156573eeae363409ed16a10323683616 | |
parent | 2cd529519d3f9d5034ed222536f8c79ef9e6b86d (diff) |
uncrustify
-rw-r--r-- | src/revocation/gnunet-service-revocation.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/revocation/gnunet-service-revocation.c b/src/revocation/gnunet-service-revocation.c index 3c08e8452..81a30748c 100644 --- a/src/revocation/gnunet-service-revocation.c +++ b/src/revocation/gnunet-service-revocation.c @@ -173,8 +173,9 @@ static int verify_revoke_message (const struct RevokeMessage *rm) { if (GNUNET_YES != GNUNET_REVOCATION_check_pow (&rm->proof_of_work, - (unsigned int) revocation_work_required, - epoch_duration)) + (unsigned + int) revocation_work_required, + epoch_duration)) { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof of work invalid!\n"); @@ -845,9 +846,9 @@ run (void *cls, } if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_time (cfg, - "REVOCATION", - "EPOCH_DURATION", - &epoch_duration)) + "REVOCATION", + "EPOCH_DURATION", + &epoch_duration)) { GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR, "REVOCATION", |