summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_link.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchange/taler-exchange-httpd_link.c')
-rw-r--r--src/exchange/taler-exchange-httpd_link.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd_link.c b/src/exchange/taler-exchange-httpd_link.c
index eaffa5584..8e43bd232 100644
--- a/src/exchange/taler-exchange-httpd_link.c
+++ b/src/exchange/taler-exchange-httpd_link.c
@@ -66,7 +66,7 @@ struct HTD_Context
static void
handle_link_data (void *cls,
const struct TALER_TransferPublicKeyP *transfer_pub,
- const struct TALER_EXCHANGEDB_LinkDataList *ldl)
+ const struct TALER_EXCHANGEDB_LinkList *ldl)
{
struct HTD_Context *ctx = cls;
json_t *list;
@@ -77,7 +77,7 @@ handle_link_data (void *cls,
if (NULL == (list = json_array ()))
goto fail;
- for (const struct TALER_EXCHANGEDB_LinkDataList *pos = ldl;
+ for (const struct TALER_EXCHANGEDB_LinkList *pos = ldl;
NULL != pos;
pos = pos->next)
{