diff options
| author | Christian Grothoff <christian@grothoff.org> | 2019-10-11 19:02:07 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2019-10-11 19:02:07 +0200 | 
| commit | 9adc4c9ffc9a83d62fe06436bc58b51a553ea284 (patch) | |
| tree | 895f0a65e6335a3fb4f8bbe3c17f471b0606e824 /src | |
| parent | 706f164facfb51d9e84cc5b3207909adafd54399 (diff) | |
fix ftbfs
Diffstat (limited to 'src')
| -rw-r--r-- | src/auditor/taler-auditor.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/src/auditor/taler-auditor.c b/src/auditor/taler-auditor.c index 398c0b04..838b79d3 100644 --- a/src/auditor/taler-auditor.c +++ b/src/auditor/taler-auditor.c @@ -665,7 +665,7 @@ add_denomination (void *cls,    if (NULL !=        GNUNET_CONTAINER_multihashmap_get (denominations,                                           &issue->denom_hash)) -    return; /* value already known */ +    return GNUNET_OK; /* value already known */    {      struct TALER_Amount value; @@ -714,11 +714,10 @@ get_denomination_info_by_hash (const struct GNUNET_HashCode *dh,                                 TALER_DenominationKeyValidityPS **issue)  {    const struct TALER_DenominationKeyValidityPS *i; +  enum GNUNET_DB_QueryStatus qs;    if (NULL == denominations)    { -    enum GNUNET_DB_QueryStatus qs; -      denominations = GNUNET_CONTAINER_multihashmap_create (256,                                                            GNUNET_NO);      qs = adb->select_denomination_info (adb->cls,  | 
